diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-02-19 06:41:30 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-02-20 20:11:49 -0500 |
commit | 42bfad4f71637c4eb4791aa8062063c4a8526522 (patch) | |
tree | 42c8c52d953aaa8f0418084af1e60c15e900488c | |
parent | 58ff70d4feae29cbb7ace410fa6585ef3afb44b6 (diff) |
ssb: Fix watchdog access for devices without a chipcommon
This fixes the SSB watchdog access for devices without a chipcommon.
These devices have the watchdog on the extif.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/ssb/Kconfig | 6 | ||||
-rw-r--r-- | drivers/ssb/Makefile | 1 | ||||
-rw-r--r-- | drivers/ssb/driver_extif.c | 6 | ||||
-rw-r--r-- | drivers/ssb/embedded.c | 26 | ||||
-rw-r--r-- | include/linux/ssb/ssb_driver_chipcommon.h | 5 | ||||
-rw-r--r-- | include/linux/ssb/ssb_driver_extif.h | 9 | ||||
-rw-r--r-- | include/linux/ssb/ssb_embedded.h | 10 |
7 files changed, 63 insertions, 0 deletions
diff --git a/drivers/ssb/Kconfig b/drivers/ssb/Kconfig index d976660cb7f0..78fd33125e02 100644 --- a/drivers/ssb/Kconfig +++ b/drivers/ssb/Kconfig | |||
@@ -105,6 +105,12 @@ config SSB_DRIVER_MIPS | |||
105 | 105 | ||
106 | If unsure, say N | 106 | If unsure, say N |
107 | 107 | ||
108 | # Assumption: We are on embedded, if we compile the MIPS core. | ||
109 | config SSB_EMBEDDED | ||
110 | bool | ||
111 | depends on SSB_DRIVER_MIPS | ||
112 | default y | ||
113 | |||
108 | config SSB_DRIVER_EXTIF | 114 | config SSB_DRIVER_EXTIF |
109 | bool "SSB Broadcom EXTIF core driver (EXPERIMENTAL)" | 115 | bool "SSB Broadcom EXTIF core driver (EXPERIMENTAL)" |
110 | depends on SSB_DRIVER_MIPS && EXPERIMENTAL | 116 | depends on SSB_DRIVER_MIPS && EXPERIMENTAL |
diff --git a/drivers/ssb/Makefile b/drivers/ssb/Makefile index 7be397595805..e235144add7c 100644 --- a/drivers/ssb/Makefile +++ b/drivers/ssb/Makefile | |||
@@ -1,5 +1,6 @@ | |||
1 | # core | 1 | # core |
2 | ssb-y += main.o scan.o | 2 | ssb-y += main.o scan.o |
3 | ssb-$(CONFIG_SSB_EMBEDDED) += embedded.o | ||
3 | 4 | ||
4 | # host support | 5 | # host support |
5 | ssb-$(CONFIG_SSB_PCIHOST) += pci.o pcihost_wrapper.o | 6 | ssb-$(CONFIG_SSB_PCIHOST) += pci.o pcihost_wrapper.o |
diff --git a/drivers/ssb/driver_extif.c b/drivers/ssb/driver_extif.c index fe55eb8b038a..b1899f422a54 100644 --- a/drivers/ssb/driver_extif.c +++ b/drivers/ssb/driver_extif.c | |||
@@ -110,6 +110,12 @@ void ssb_extif_get_clockcontrol(struct ssb_extif *extif, | |||
110 | *m = extif_read32(extif, SSB_EXTIF_CLOCK_SB); | 110 | *m = extif_read32(extif, SSB_EXTIF_CLOCK_SB); |
111 | } | 111 | } |
112 | 112 | ||
113 | void ssb_extif_watchdog_timer_set(struct ssb_extif *extif, | ||
114 | u32 ticks) | ||
115 | { | ||
116 | extif_write32(extif, SSB_EXTIF_WATCHDOG, ticks); | ||
117 | } | ||
118 | |||
113 | u32 ssb_extif_gpio_in(struct ssb_extif *extif, u32 mask) | 119 | u32 ssb_extif_gpio_in(struct ssb_extif *extif, u32 mask) |
114 | { | 120 | { |
115 | return extif_read32(extif, SSB_EXTIF_GPIO_IN) & mask; | 121 | return extif_read32(extif, SSB_EXTIF_GPIO_IN) & mask; |
diff --git a/drivers/ssb/embedded.c b/drivers/ssb/embedded.c new file mode 100644 index 000000000000..751f58ac612c --- /dev/null +++ b/drivers/ssb/embedded.c | |||
@@ -0,0 +1,26 @@ | |||
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 | |||
11 | #include <linux/ssb/ssb.h> | ||
12 | #include <linux/ssb/ssb_embedded.h> | ||
13 | |||
14 | |||
15 | int ssb_watchdog_timer_set(struct ssb_bus *bus, u32 ticks) | ||
16 | { | ||
17 | if (ssb_chipco_available(&bus->chipco)) { | ||
18 | ssb_chipco_watchdog_timer_set(&bus->chipco, ticks); | ||
19 | return 0; | ||
20 | } | ||
21 | if (ssb_extif_available(&bus->extif)) { | ||
22 | ssb_extif_watchdog_timer_set(&bus->extif, ticks); | ||
23 | return 0; | ||
24 | } | ||
25 | return -ENODEV; | ||
26 | } | ||
diff --git a/include/linux/ssb/ssb_driver_chipcommon.h b/include/linux/ssb/ssb_driver_chipcommon.h index 35717b400cef..89638153cbe1 100644 --- a/include/linux/ssb/ssb_driver_chipcommon.h +++ b/include/linux/ssb/ssb_driver_chipcommon.h | |||
@@ -360,6 +360,11 @@ struct ssb_chipcommon { | |||
360 | u16 fast_pwrup_delay; | 360 | u16 fast_pwrup_delay; |
361 | }; | 361 | }; |
362 | 362 | ||
363 | static inline bool ssb_chipco_available(struct ssb_chipcommon *cc) | ||
364 | { | ||
365 | return (cc->dev != NULL); | ||
366 | } | ||
367 | |||
363 | extern void ssb_chipcommon_init(struct ssb_chipcommon *cc); | 368 | extern void ssb_chipcommon_init(struct ssb_chipcommon *cc); |
364 | 369 | ||
365 | #include <linux/pm.h> | 370 | #include <linux/pm.h> |
diff --git a/include/linux/ssb/ssb_driver_extif.h b/include/linux/ssb/ssb_driver_extif.h index a9164357b5ae..0d7c9bfa965d 100644 --- a/include/linux/ssb/ssb_driver_extif.h +++ b/include/linux/ssb/ssb_driver_extif.h | |||
@@ -171,6 +171,9 @@ extern void ssb_extif_get_clockcontrol(struct ssb_extif *extif, | |||
171 | extern void ssb_extif_timing_init(struct ssb_extif *extif, | 171 | extern void ssb_extif_timing_init(struct ssb_extif *extif, |
172 | unsigned long ns); | 172 | unsigned long ns); |
173 | 173 | ||
174 | extern void ssb_extif_watchdog_timer_set(struct ssb_extif *extif, | ||
175 | u32 ticks); | ||
176 | |||
174 | u32 ssb_extif_gpio_in(struct ssb_extif *extif, u32 mask); | 177 | u32 ssb_extif_gpio_in(struct ssb_extif *extif, u32 mask); |
175 | 178 | ||
176 | void ssb_extif_gpio_out(struct ssb_extif *extif, u32 mask, u32 value); | 179 | void ssb_extif_gpio_out(struct ssb_extif *extif, u32 mask, u32 value); |
@@ -200,5 +203,11 @@ void ssb_extif_get_clockcontrol(struct ssb_extif *extif, | |||
200 | { | 203 | { |
201 | } | 204 | } |
202 | 205 | ||
206 | static inline | ||
207 | void ssb_extif_watchdog_timer_set(struct ssb_extif *extif, | ||
208 | u32 ticks) | ||
209 | { | ||
210 | } | ||
211 | |||
203 | #endif /* CONFIG_SSB_DRIVER_EXTIF */ | 212 | #endif /* CONFIG_SSB_DRIVER_EXTIF */ |
204 | #endif /* LINUX_SSB_EXTIFCORE_H_ */ | 213 | #endif /* LINUX_SSB_EXTIFCORE_H_ */ |
diff --git a/include/linux/ssb/ssb_embedded.h b/include/linux/ssb/ssb_embedded.h new file mode 100644 index 000000000000..80bd58496450 --- /dev/null +++ b/include/linux/ssb/ssb_embedded.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #ifndef LINUX_SSB_EMBEDDED_H_ | ||
2 | #define LINUX_SSB_EMBEDDED_H_ | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | #include <linux/ssb/ssb.h> | ||
6 | |||
7 | |||
8 | extern int ssb_watchdog_timer_set(struct ssb_bus *bus, u32 ticks); | ||
9 | |||
10 | #endif /* LINUX_SSB_EMBEDDED_H_ */ | ||