summaryrefslogtreecommitdiffstats
path: root/arch/blackfin/boards/ipe337/ipe337.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/blackfin/boards/ipe337/ipe337.c')
-rw-r--r--arch/blackfin/boards/ipe337/ipe337.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/arch/blackfin/boards/ipe337/ipe337.c b/arch/blackfin/boards/ipe337/ipe337.c
deleted file mode 100644
index 604062a54b..0000000000
--- a/arch/blackfin/boards/ipe337/ipe337.c
+++ /dev/null
@@ -1,48 +0,0 @@
-#include <common.h>
-#include <init.h>
-#include <driver.h>
-#include <asm/cpu/cdefBF561.h>
-#include <partition.h>
-#include <fs.h>
-#include <platform_data/eth-smc911x.h>
-
-struct smc911x_plat smcplat = {
- .shift = 1,
-};
-
-static int ipe337_devices_init(void) {
- add_cfi_flash_device(DEVICE_ID_DYNAMIC, 0x20000000, 32 * 1024 * 1024, 0);
- add_mem_device("ram0", 0x0, 128 * 1024 * 1024,
- IORESOURCE_MEM_WRITEABLE);
-
- /* Reset smc911x */
- *pFIO0_DIR = (1<<12);
- *pFIO0_FLAG_C = (1<<12);
- mdelay(100);
- *pFIO0_FLAG_S = (1<<12);
-
- add_generic_device("smc911x", DEVICE_ID_DYNAMIC, NULL, 0x24000000, 4096,
- IORESOURCE_MEM, &smcplat);
-
- devfs_add_partition("nor0", 0x00000, 0x20000, DEVFS_PARTITION_FIXED, "self0");
- devfs_add_partition("nor0", 0x20000, 0x20000, DEVFS_PARTITION_FIXED, "env0");
-
- protect_file("/dev/env0", 1);
-
- return 0;
-}
-
-device_initcall(ipe337_devices_init);
-
-static int blackfin_console_init(void)
-{
- barebox_set_model("PII ipe337");
- barebox_set_hostname("ipe337");
-
- add_generic_device("blackfin_serial", DEVICE_ID_DYNAMIC, NULL, 0, 4096,
- IORESOURCE_MEM, NULL);
-
- return 0;
-}
-
-console_initcall(blackfin_console_init);