diff options
author | Barry Song <barry.song@analog.com> | 2009-11-02 02:29:07 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-12-15 00:16:38 -0500 |
commit | 706a01b1c6d50b0940ca31d2dc21ba54f095f5af (patch) | |
tree | e51ae118ecb0f20febca0e9dea54148c57ce4d67 /arch/blackfin/mach-bf548 | |
parent | 1f13f2fdca71408ad211936b85e673b72e91911a (diff) |
Blackfin: bf537-stamp: add CAN resources
Signed-off-by: Barry Song <barry.song@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf548')
-rw-r--r-- | arch/blackfin/mach-bf548/boards/ezkit.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf548/boards/ezkit.c b/arch/blackfin/mach-bf548/boards/ezkit.c index fa44ea2a5201..60193f72777c 100644 --- a/arch/blackfin/mach-bf548/boards/ezkit.c +++ b/arch/blackfin/mach-bf548/boards/ezkit.c | |||
@@ -464,6 +464,44 @@ static struct platform_device musb_device = { | |||
464 | }; | 464 | }; |
465 | #endif | 465 | #endif |
466 | 466 | ||
467 | #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE) | ||
468 | unsigned short bfin_can_peripherals[] = { | ||
469 | P_CAN0_RX, P_CAN0_TX, 0 | ||
470 | }; | ||
471 | |||
472 | static struct resource bfin_can_resources[] = { | ||
473 | { | ||
474 | .start = 0xFFC02A00, | ||
475 | .end = 0xFFC02FFF, | ||
476 | .flags = IORESOURCE_MEM, | ||
477 | }, | ||
478 | { | ||
479 | .start = IRQ_CAN0_RX, | ||
480 | .end = IRQ_CAN0_RX, | ||
481 | .flags = IORESOURCE_IRQ, | ||
482 | }, | ||
483 | { | ||
484 | .start = IRQ_CAN0_TX, | ||
485 | .end = IRQ_CAN0_TX, | ||
486 | .flags = IORESOURCE_IRQ, | ||
487 | }, | ||
488 | { | ||
489 | .start = IRQ_CAN0_ERROR, | ||
490 | .end = IRQ_CAN0_ERROR, | ||
491 | .flags = IORESOURCE_IRQ, | ||
492 | }, | ||
493 | }; | ||
494 | |||
495 | static struct platform_device bfin_can_device = { | ||
496 | .name = "bfin_can", | ||
497 | .num_resources = ARRAY_SIZE(bfin_can_resources), | ||
498 | .resource = bfin_can_resources, | ||
499 | .dev = { | ||
500 | .platform_data = &bfin_can_peripherals, /* Passed to driver */ | ||
501 | }, | ||
502 | }; | ||
503 | #endif | ||
504 | |||
467 | #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE) | 505 | #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE) |
468 | static struct resource bfin_atapi_resources[] = { | 506 | static struct resource bfin_atapi_resources[] = { |
469 | { | 507 | { |
@@ -956,6 +994,10 @@ static struct platform_device *ezkit_devices[] __initdata = { | |||
956 | &bfin_isp1760_device, | 994 | &bfin_isp1760_device, |
957 | #endif | 995 | #endif |
958 | 996 | ||
997 | #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE) | ||
998 | &bfin_can_device, | ||
999 | #endif | ||
1000 | |||
959 | #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE) | 1001 | #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE) |
960 | &bfin_atapi_device, | 1002 | &bfin_atapi_device, |
961 | #endif | 1003 | #endif |