diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-07 15:00:25 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-07 15:00:25 -0500 |
commit | 5bb47b9ff3d16d40f8d45380b373497a545fa280 (patch) | |
tree | e13dd34395473342dc75eff5cbaf5b1ea753631c /arch/blackfin/mach-bf533/boards/ip0x.c | |
parent | 2f2408a88cf8fa43febfd7fb5783e61b2937b0f9 (diff) | |
parent | 06af15e086e39a5a2a2413973a64af8e10122f28 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6: (171 commits)
Blackfin arch: fix bug - BF527 0.2 silicon has different CPUID (DSPID) value
Blackfin arch: Enlarge flash partition for kenel for bf533/bf537 boards
Blackfin arch: fix bug: kernel crash when enable SDIO host driver
Blackfin arch: Print FP at level KERN_NOTICE
Blackfin arch: drop ad73311 test code
Blackfin arch: update board default configs
Blackfin arch: Set PB4 as the default irq for bf548 board v1.4+.
Blackfin arch: fix typo in early printk bit size processing
Blackfin arch: enable reprogram cclk and sclk for bf518f-ezbrd
Blackfin arch: add SDIO host driver platform data
Blackfin arch: fix bug - kernel stops at initial console
Blackfin arch: fix bug - kernel crash after config IP for ethernet port
Blackfin arch: add sdh support for bf518f-ezbrd
Blackfin arch: fix bug - kernel detects BF532 incorrectly
Blackfin arch: add () to avoid warnings from gcc
Blackfin arch: change HWTRACE Kconfig and set it on default
Blackfin arch: Clean oprofile build path for blackfin
Blackfin arch: remove hardware PM code, oprofile not use it
Blackfin arch: rewrite get_sclk()/get_vco()
Blackfin arch: cleanup and unify the ins functions
...
Diffstat (limited to 'arch/blackfin/mach-bf533/boards/ip0x.c')
-rw-r--r-- | arch/blackfin/mach-bf533/boards/ip0x.c | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/arch/blackfin/mach-bf533/boards/ip0x.c b/arch/blackfin/mach-bf533/boards/ip0x.c index 5864892de314..e30b1b7d1442 100644 --- a/arch/blackfin/mach-bf533/boards/ip0x.c +++ b/arch/blackfin/mach-bf533/boards/ip0x.c | |||
@@ -197,23 +197,33 @@ static struct platform_device bfin_uart_device = { | |||
197 | #endif | 197 | #endif |
198 | 198 | ||
199 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) | 199 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
200 | static struct resource bfin_sir_resources[] = { | ||
201 | #ifdef CONFIG_BFIN_SIR0 | 200 | #ifdef CONFIG_BFIN_SIR0 |
201 | static struct resource bfin_sir0_resources[] = { | ||
202 | { | 202 | { |
203 | .start = 0xFFC00400, | 203 | .start = 0xFFC00400, |
204 | .end = 0xFFC004FF, | 204 | .end = 0xFFC004FF, |
205 | .flags = IORESOURCE_MEM, | 205 | .flags = IORESOURCE_MEM, |
206 | }, | 206 | }, |
207 | #endif | 207 | { |
208 | .start = IRQ_UART0_RX, | ||
209 | .end = IRQ_UART0_RX+1, | ||
210 | .flags = IORESOURCE_IRQ, | ||
211 | }, | ||
212 | { | ||
213 | .start = CH_UART0_RX, | ||
214 | .end = CH_UART0_RX+1, | ||
215 | .flags = IORESOURCE_DMA, | ||
216 | }, | ||
208 | }; | 217 | }; |
209 | 218 | ||
210 | static struct platform_device bfin_sir_device = { | 219 | static struct platform_device bfin_sir0_device = { |
211 | .name = "bfin_sir", | 220 | .name = "bfin_sir", |
212 | .id = 0, | 221 | .id = 0, |
213 | .num_resources = ARRAY_SIZE(bfin_sir_resources), | 222 | .num_resources = ARRAY_SIZE(bfin_sir0_resources), |
214 | .resource = bfin_sir_resources, | 223 | .resource = bfin_sir0_resources, |
215 | }; | 224 | }; |
216 | #endif | 225 | #endif |
226 | #endif | ||
217 | 227 | ||
218 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) | 228 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |
219 | static struct resource isp1362_hcd_resources[] = { | 229 | static struct resource isp1362_hcd_resources[] = { |
@@ -272,7 +282,9 @@ static struct platform_device *ip0x_devices[] __initdata = { | |||
272 | #endif | 282 | #endif |
273 | 283 | ||
274 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) | 284 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
275 | &bfin_sir_device, | 285 | #ifdef CONFIG_BFIN_SIR0 |
286 | &bfin_sir0_device, | ||
287 | #endif | ||
276 | #endif | 288 | #endif |
277 | 289 | ||
278 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) | 290 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |