embedded.c 595 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Sonics Silicon Backplane
  3. * Embedded systems support code
  4. *
  5. * Copyright 2005-2008, Broadcom Corporation
  6. * Copyright 2006-2008, Michael Buesch <mb@bu3sch.de>
  7. *
  8. * Licensed under the GNU/GPL. See COPYING for details.
  9. */
  10. #include <linux/ssb/ssb.h>
  11. #include <linux/ssb/ssb_embedded.h>
  12. int ssb_watchdog_timer_set(struct ssb_bus *bus, u32 ticks)
  13. {
  14. if (ssb_chipco_available(&bus->chipco)) {
  15. ssb_chipco_watchdog_timer_set(&bus->chipco, ticks);
  16. return 0;
  17. }
  18. if (ssb_extif_available(&bus->extif)) {
  19. ssb_extif_watchdog_timer_set(&bus->extif, ticks);
  20. return 0;
  21. }
  22. return -ENODEV;
  23. }