/* * Copyright (C) 2011 Sascha Hauer, Pengutronix * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static struct NS16550_plat serial_plat = { .clock = 48000000, /* 48MHz (APLL96/2) */ }; static int pcm049_console_init(void) { /* Register the serial port */ add_ns16550_device(-1, OMAP44XX_UART3_BASE, 1024, IORESOURCE_MEM_8BIT, &serial_plat); return 0; } console_initcall(pcm049_console_init); static int pcm049_mem_init(void) { arm_add_mem_device("ram0", 0x80000000, SZ_512M); add_mem_device("sram0", 0x40300000, 48 * 1024, IORESOURCE_MEM_WRITEABLE); return 0; } mem_initcall(pcm049_mem_init); static struct gpmc_config net_cfg = { .cfg = { 0x00001000, /* CONF1 */ 0x001e1e01, /* CONF2 */ 0x00080300, /* CONF3 */ 0x1c091c09, /* CONF4 */ 0x04181f1f, /* CONF5 */ 0x00000FCF, /* CONF6 */ }, .base = 0x2C000000, .size = GPMC_SIZE_16M, }; static void pcm049_network_init(void) { gpmc_cs_config(5, &net_cfg); add_generic_device("smc911x", -1, NULL, 0x2C000000, 0x4000, IORESOURCE_MEM, NULL); } static int pcm049_devices_init(void) { add_generic_device("omap-hsmmc", -1, NULL, 0x4809C100, SZ_4K, IORESOURCE_MEM, NULL); gpmc_generic_init(0x10); pcm049_network_init(); gpmc_generic_nand_devices_init(0, 8, OMAP_ECC_BCH8_CODE_HW); #ifdef CONFIG_PARTITION devfs_add_partition("nand0", 0x00000, SZ_128K, PARTITION_FIXED, "xload_raw"); dev_add_bb_dev("xload_raw", "xload"); devfs_add_partition("nand0", SZ_128K, SZ_256K, PARTITION_FIXED, "self_raw"); dev_add_bb_dev("self_raw", "self0"); devfs_add_partition("nand0", SZ_128K + SZ_256K, SZ_128K, PARTITION_FIXED, "env_raw"); dev_add_bb_dev("env_raw", "env0"); #endif armlinux_set_bootparams((void *)0x80000100); armlinux_set_architecture(MACH_TYPE_PCM049); return 0; } device_initcall(pcm049_devices_init); #ifdef CONFIG_SHELL_NONE int run_shell(void) { int (*func)(void) = NULL; switch (omap4_bootsrc()) { case OMAP_BOOTSRC_MMC1: printf("booting from MMC1\n"); func = omap_xload_boot_mmc(); break; case OMAP_BOOTSRC_UNKNOWN: printf("unknown boot source. Fall back to nand\n"); case OMAP_BOOTSRC_NAND: printf("booting from NAND\n"); func = omap_xload_boot_nand(SZ_128K, SZ_256K); break; } if (!func) { printf("booting failed\n"); while (1); } shutdown_barebox(); func(); while (1); } #endif