Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006-2008 |
| 3 | * Texas Instruments. |
| 4 | * Richard Woodruff <r-woodruff2@ti.com> |
| 5 | * Syed Mohammed Khasim <x0khasim@ti.com> |
| 6 | * Nishanth Menon <nm@ti.com> |
| 7 | * |
| 8 | * Configuration settings for the TI OMAP3430 Zoom MDK board. |
| 9 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef __CONFIG_H |
| 14 | #define __CONFIG_H |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 15 | |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 16 | #define CONFIG_NR_DRAM_BANKS 2 /* CS1 may or may not be populated */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 17 | #include <asm/arch/cpu.h> /* get chip and board defs */ |
Nishanth Menon | 987ec58 | 2015-03-09 17:12:04 -0500 | [diff] [blame] | 18 | #include <asm/arch/omap.h> |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 19 | #include <configs/ti_omap3_common.h> |
| 20 | |
| 21 | /* Remove SPL boot option - we do not support that on LDP yet */ |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 22 | #undef CONFIG_SPL_FRAMEWORK |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 23 | |
| 24 | /* Generic NAND definition conflicts with debug_base */ |
| 25 | #undef CONFIG_SYS_NAND_BASE |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 26 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 27 | #define CONFIG_MISC_INIT_R |
| 28 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 29 | #define CONFIG_REVISION_TAG 1 |
| 30 | |
Sandeep Paulraj | 9c44ddc | 2009-09-09 11:50:40 -0400 | [diff] [blame] | 31 | #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * Hardware drivers |
| 35 | */ |
| 36 | |
Tom Rix | 05be5a6 | 2009-10-31 12:37:42 -0500 | [diff] [blame] | 37 | /* USB */ |
Paul Kocialkowski | 95de1e2 | 2015-08-04 17:04:06 +0200 | [diff] [blame] | 38 | #define CONFIG_USB_MUSB_UDC 1 |
Tom Rix | 05be5a6 | 2009-10-31 12:37:42 -0500 | [diff] [blame] | 39 | #define CONFIG_USB_OMAP3 1 |
| 40 | #define CONFIG_TWL4030_USB 1 |
| 41 | |
| 42 | /* USB device configuration */ |
| 43 | #define CONFIG_USB_DEVICE 1 |
| 44 | #define CONFIG_USB_TTY 1 |
Tom Rix | 05be5a6 | 2009-10-31 12:37:42 -0500 | [diff] [blame] | 45 | /* Change these to suit your needs */ |
| 46 | #define CONFIG_USBD_VENDORID 0x0451 |
| 47 | #define CONFIG_USBD_PRODUCTID 0x5678 |
| 48 | #define CONFIG_USBD_MANUFACTURER "Texas Instruments" |
| 49 | #define CONFIG_USBD_PRODUCT_NAME "Zoom1" |
| 50 | |
Nishanth Menon | 4e8183b | 2014-04-08 09:50:55 -0500 | [diff] [blame] | 51 | #define MTDIDS_DEFAULT "nand0=nand" |
| 52 | #define MTDPARTS_DEFAULT "mtdparts=nand:512k(x-loader),"\ |
| 53 | "1920k(u-boot),128k(u-boot-env),"\ |
| 54 | "4m(kernel),-(fs)" |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 55 | |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 56 | #if defined(CONFIG_CMD_NAND) |
pekon gupta | 434f2cf | 2014-07-18 17:59:42 +0530 | [diff] [blame] | 57 | /* NAND: SPL falcon mode configs */ |
| 58 | #ifdef CONFIG_SPL_OS_BOOT |
pekon gupta | 434f2cf | 2014-07-18 17:59:42 +0530 | [diff] [blame] | 59 | #define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000 |
pekon gupta | 434f2cf | 2014-07-18 17:59:42 +0530 | [diff] [blame] | 60 | #endif |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 61 | #endif |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 62 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 63 | /* |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 64 | * TWL4030 |
| 65 | */ |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 66 | #define CONFIG_TWL4030_LED 1 |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 67 | |
| 68 | /* |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 69 | * Board NAND Info. |
| 70 | */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 71 | #define CONFIG_SYS_NAND_ADDR NAND_BASE /* physical address */ |
| 72 | /* to access nand */ |
| 73 | #define CONFIG_SYS_NAND_BASE NAND_BASE /* physical address */ |
| 74 | /* to access nand at */ |
| 75 | /* CS0 */ |
Stefano Babic | 55f1b39 | 2015-07-26 15:18:15 +0200 | [diff] [blame] | 76 | #define CONFIG_SYS_NAND_BUSWIDTH_16BIT |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 77 | |
| 78 | /* Environment information */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 79 | |
| 80 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 81 | "loadaddr=0x82000000\0" \ |
Nishanth Menon | c2e7c7b | 2014-04-08 09:50:56 -0500 | [diff] [blame] | 82 | "fdtaddr=0x80f80000\0" \ |
Nishanth Menon | 4e8183b | 2014-04-08 09:50:55 -0500 | [diff] [blame] | 83 | "bootfile=uImage\0" \ |
Nishanth Menon | c2e7c7b | 2014-04-08 09:50:56 -0500 | [diff] [blame] | 84 | "fdtfile=omap3-ldp.dtb\0" \ |
Nishanth Menon | 4e8183b | 2014-04-08 09:50:55 -0500 | [diff] [blame] | 85 | "bootdir=/\0" \ |
| 86 | "bootpart=0:1\0" \ |
Tom Rix | 05be5a6 | 2009-10-31 12:37:42 -0500 | [diff] [blame] | 87 | "usbtty=cdc_acm\0" \ |
Nishanth Menon | ea467c7 | 2014-04-08 09:50:57 -0500 | [diff] [blame] | 88 | "console=ttyO2,115200n8\0" \ |
Tom Rini | d6906cb | 2011-09-03 21:50:35 -0400 | [diff] [blame] | 89 | "mmcdev=0\0" \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 90 | "videomode=1024x768@60,vxres=1024,vyres=768\0" \ |
| 91 | "videospec=omapfb:vram:2M,vram:4M\0" \ |
| 92 | "mmcargs=setenv bootargs console=${console} " \ |
| 93 | "video=${videospec},mode:${videomode} " \ |
| 94 | "root=/dev/mmcblk0p2 rw " \ |
| 95 | "rootfstype=ext3 rootwait\0" \ |
| 96 | "nandargs=setenv bootargs console=${console} " \ |
| 97 | "video=${videospec},mode:${videomode} " \ |
| 98 | "root=/dev/mtdblock4 rw " \ |
| 99 | "rootfstype=jffs2\0" \ |
Tom Rini | d6906cb | 2011-09-03 21:50:35 -0400 | [diff] [blame] | 100 | "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 101 | "bootscript=echo Running bootscript from mmc ...; " \ |
Wolfgang Denk | 74de7ae | 2009-04-01 23:34:12 +0200 | [diff] [blame] | 102 | "source ${loadaddr}\0" \ |
Nishanth Menon | 4e8183b | 2014-04-08 09:50:55 -0500 | [diff] [blame] | 103 | "loadimage=load mmc ${bootpart} ${loadaddr} ${bootdir}/${bootfile}\0" \ |
Nishanth Menon | c2e7c7b | 2014-04-08 09:50:56 -0500 | [diff] [blame] | 104 | "loadfdt=load mmc ${bootpart} ${fdtaddr} ${bootdir}/${fdtfile}\0" \ |
| 105 | "loadzimage=setenv bootfile zImage; if run loadimage; then run loadfdt;fi\0"\ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 106 | "mmcboot=echo Booting from mmc ...; " \ |
| 107 | "run mmcargs; " \ |
| 108 | "bootm ${loadaddr}\0" \ |
Nishanth Menon | c2e7c7b | 2014-04-08 09:50:56 -0500 | [diff] [blame] | 109 | "mmczboot=echo Booting from mmc ...; " \ |
| 110 | "run mmcargs; " \ |
| 111 | "bootz ${loadaddr} - ${fdtaddr}\0" \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 112 | "nandboot=echo Booting from nand ...; " \ |
| 113 | "run nandargs; " \ |
| 114 | "nand read ${loadaddr} 280000 400000; " \ |
| 115 | "bootm ${loadaddr}\0" \ |
| 116 | |
| 117 | #define CONFIG_BOOTCOMMAND \ |
Andrew Bradford | 6696811 | 2012-10-01 05:06:52 +0000 | [diff] [blame] | 118 | "mmc dev ${mmcdev}; if mmc rescan; then " \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 119 | "if run loadbootscript; then " \ |
| 120 | "run bootscript; " \ |
| 121 | "else " \ |
Nishanth Menon | 4e8183b | 2014-04-08 09:50:55 -0500 | [diff] [blame] | 122 | "if run loadimage; then " \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 123 | "run mmcboot; " \ |
Nishanth Menon | c2e7c7b | 2014-04-08 09:50:56 -0500 | [diff] [blame] | 124 | "else if run loadzimage; then " \ |
| 125 | "run mmczboot; " \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 126 | "else run nandboot; " \ |
Nishanth Menon | c2e7c7b | 2014-04-08 09:50:56 -0500 | [diff] [blame] | 127 | "fi; fi;" \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 128 | "fi; " \ |
| 129 | "else run nandboot; fi" |
| 130 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 131 | /* |
| 132 | * Miscellaneous configurable options |
| 133 | */ |
Nishanth Menon | 161d2d5 | 2014-04-08 09:50:58 -0500 | [diff] [blame] | 134 | #define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1) /* memtest */ |
| 135 | #define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_2 + \ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 136 | 0x01F00000) /* 31MB */ |
| 137 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 138 | /*----------------------------------------------------------------------- |
| 139 | * FLASH and environment organization |
| 140 | */ |
| 141 | |
| 142 | /* **** PISMO SUPPORT *** */ |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 143 | #if defined(CONFIG_CMD_NAND) |
pekon gupta | 222a311 | 2014-07-18 17:59:41 +0530 | [diff] [blame] | 144 | #define CONFIG_SYS_FLASH_BASE NAND_BASE |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 145 | #endif |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 146 | |
| 147 | /* Monitor at start of flash */ |
| 148 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE |
| 149 | #define CONFIG_SYS_ONENAND_BASE ONENAND_MAP |
| 150 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 151 | #define ONENAND_ENV_OFFSET 0x260000 /* environment starts here */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 152 | |
Luca Ceresoli | 6cbec7b | 2011-04-20 11:02:05 -0400 | [diff] [blame] | 153 | #define CONFIG_SYS_ENV_SECT_SIZE (128 << 10) /* 128 KiB */ |
Adam Ford | 7672d9d | 2017-09-04 21:08:02 -0500 | [diff] [blame] | 154 | #define CONFIG_ENV_OFFSET 0x260000 |
| 155 | #define CONFIG_ENV_ADDR 0x260000 |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 156 | |
Nishanth Menon | 9d70e77 | 2014-04-08 09:50:53 -0500 | [diff] [blame] | 157 | #ifdef CONFIG_CMD_NET |
| 158 | /* Ethernet (LAN9211 from SMSC9118 family) */ |
| 159 | #define CONFIG_SMC911X |
| 160 | #define CONFIG_SMC911X_32_BIT |
| 161 | #define CONFIG_SMC911X_BASE DEBUG_BASE |
| 162 | |
| 163 | #endif |
| 164 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 165 | #endif /* __CONFIG_H */ |