diff options
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/mach-bf533/boards/blackstamp.c | 15 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/ip0x.c | 9 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/stamp.c | 20 |
3 files changed, 22 insertions, 22 deletions
diff --git a/arch/blackfin/mach-bf533/boards/blackstamp.c b/arch/blackfin/mach-bf533/boards/blackstamp.c index 20c102285bef..992f551f06a1 100644 --- a/arch/blackfin/mach-bf533/boards/blackstamp.c +++ b/arch/blackfin/mach-bf533/boards/blackstamp.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include <asm/bfin5xx_spi.h> | 25 | #include <asm/bfin5xx_spi.h> |
26 | #include <asm/portmux.h> | 26 | #include <asm/portmux.h> |
27 | #include <asm/dpmc.h> | 27 | #include <asm/dpmc.h> |
28 | #include <mach/fio_flag.h> | ||
29 | 28 | ||
30 | /* | 29 | /* |
31 | * Name the Board for the /proc/cpuinfo | 30 | * Name the Board for the /proc/cpuinfo |
@@ -476,10 +475,16 @@ static int __init blackstamp_init(void) | |||
476 | return ret; | 475 | return ret; |
477 | 476 | ||
478 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) | 477 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
479 | /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */ | 478 | /* |
480 | bfin_write_FIO_DIR(bfin_read_FIO_DIR() | PF0); | 479 | * setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC. |
481 | bfin_write_FIO_FLAG_S(PF0); | 480 | * the bfin-async-map driver takes care of flipping between |
482 | SSYNC(); | 481 | * flash and ethernet when necessary. |
482 | */ | ||
483 | ret = gpio_request(GPIO_PF0, "enet_cpld"); | ||
484 | if (!ret) { | ||
485 | gpio_direction_output(GPIO_PF0, 1); | ||
486 | gpio_free(GPIO_PF0); | ||
487 | } | ||
483 | #endif | 488 | #endif |
484 | 489 | ||
485 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 490 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
diff --git a/arch/blackfin/mach-bf533/boards/ip0x.c b/arch/blackfin/mach-bf533/boards/ip0x.c index 5ba4b02a12eb..631f0516e465 100644 --- a/arch/blackfin/mach-bf533/boards/ip0x.c +++ b/arch/blackfin/mach-bf533/boards/ip0x.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <asm/dma.h> | 22 | #include <asm/dma.h> |
23 | #include <asm/bfin5xx_spi.h> | 23 | #include <asm/bfin5xx_spi.h> |
24 | #include <asm/portmux.h> | 24 | #include <asm/portmux.h> |
25 | #include <mach/fio_flag.h> | ||
26 | 25 | ||
27 | /* | 26 | /* |
28 | * Name the Board for the /proc/cpuinfo | 27 | * Name the Board for the /proc/cpuinfo |
@@ -295,15 +294,7 @@ static int __init ip0x_init(void) | |||
295 | printk(KERN_INFO "%s(): registering device resources\n", __func__); | 294 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
296 | platform_add_devices(ip0x_devices, ARRAY_SIZE(ip0x_devices)); | 295 | platform_add_devices(ip0x_devices, ARRAY_SIZE(ip0x_devices)); |
297 | 296 | ||
298 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) | ||
299 | for (i = 0; i < ARRAY_SIZE(bfin_spi_board_info); ++i) { | ||
300 | int j = 1 << bfin_spi_board_info[i].chip_select; | ||
301 | /* set spi cs to 1 */ | ||
302 | bfin_write_FIO_DIR(bfin_read_FIO_DIR() | j); | ||
303 | bfin_write_FIO_FLAG_S(j); | ||
304 | } | ||
305 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 297 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
306 | #endif | ||
307 | 298 | ||
308 | return 0; | 299 | return 0; |
309 | } | 300 | } |
diff --git a/arch/blackfin/mach-bf533/boards/stamp.c b/arch/blackfin/mach-bf533/boards/stamp.c index b3b1cdea2703..4b73d4295f82 100644 --- a/arch/blackfin/mach-bf533/boards/stamp.c +++ b/arch/blackfin/mach-bf533/boards/stamp.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <asm/reboot.h> | 24 | #include <asm/reboot.h> |
25 | #include <asm/portmux.h> | 25 | #include <asm/portmux.h> |
26 | #include <asm/dpmc.h> | 26 | #include <asm/dpmc.h> |
27 | #include <mach/fio_flag.h> | ||
28 | 27 | ||
29 | /* | 28 | /* |
30 | * Name the Board for the /proc/cpuinfo | 29 | * Name the Board for the /proc/cpuinfo |
@@ -674,10 +673,16 @@ static int __init stamp_init(void) | |||
674 | return ret; | 673 | return ret; |
675 | 674 | ||
676 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) | 675 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
677 | /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */ | 676 | /* |
678 | bfin_write_FIO_DIR(bfin_read_FIO_DIR() | PF0); | 677 | * setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC. |
679 | bfin_write_FIO_FLAG_S(PF0); | 678 | * the bfin-async-map driver takes care of flipping between |
680 | SSYNC(); | 679 | * flash and ethernet when necessary. |
680 | */ | ||
681 | ret = gpio_request(GPIO_PF0, "enet_cpld"); | ||
682 | if (!ret) { | ||
683 | gpio_direction_output(GPIO_PF0, 1); | ||
684 | gpio_free(GPIO_PF0); | ||
685 | } | ||
681 | #endif | 686 | #endif |
682 | 687 | ||
683 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); | 688 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
@@ -713,7 +718,6 @@ void __init native_machine_early_platform_add_devices(void) | |||
713 | void native_machine_restart(char *cmd) | 718 | void native_machine_restart(char *cmd) |
714 | { | 719 | { |
715 | /* workaround pull up on cpld / flash pin not being strong enough */ | 720 | /* workaround pull up on cpld / flash pin not being strong enough */ |
716 | bfin_write_FIO_INEN(~PF0); | 721 | gpio_request(GPIO_PF0, "flash_cpld"); |
717 | bfin_write_FIO_DIR(PF0); | 722 | gpio_direction_output(GPIO_PF0, 0); |
718 | bfin_write_FIO_FLAG_C(PF0); | ||
719 | } | 723 | } |