Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 Samsung Electronics |
| 3 | * Minkyu Kang <mk7.kang@samsung.com> |
| 4 | * |
Chander Kashyap | 393cb36 | 2011-12-06 23:34:12 +0000 | [diff] [blame] | 5 | * Configuation settings for the SAMSUNG Universal (EXYNOS4210) board. |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 8 | */ |
| 9 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 10 | #ifndef __CONFIG_UNIVERSAL_H |
| 11 | #define __CONFIG_UNIVERSAL_H |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 12 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 13 | #include <configs/exynos4-dt.h> |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 14 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 15 | #define CONFIG_SYS_PROMPT "Universal # " /* Monitor Command Prompt */ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 16 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 17 | #undef CONFIG_DEFAULT_DEVICE_TREE |
| 18 | #define CONFIG_DEFAULT_DEVICE_TREE exynos4210-universal_c210 |
| 19 | |
| 20 | #define CONFIG_TIZEN /* TIZEN lib */ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 21 | |
| 22 | /* Keep L2 Cache Disabled */ |
Aneesh V | e47f2db | 2011-06-16 23:30:48 +0000 | [diff] [blame] | 23 | #define CONFIG_SYS_L2CACHE_OFF 1 |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 24 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 25 | /* Universal has 2 banks of DRAM */ |
| 26 | #define CONFIG_NR_DRAM_BANKS 2 |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 27 | #define CONFIG_SYS_SDRAM_BASE 0x40000000 |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 28 | #define PHYS_SDRAM_1 CONFIG_SYS_SDRAM_BASE |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 29 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 30 | #define SDRAM_BANK_SIZE (256 << 20) /* 256 MB */ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 31 | |
| 32 | /* Size of malloc() pool */ |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 33 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (80 * SZ_1M)) |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 34 | |
| 35 | /* select serial console configuration */ |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 36 | #define CONFIG_SERIAL2 |
| 37 | #define CONFIG_BAUDRATE 115200 |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 38 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 39 | /* Console configuration */ |
| 40 | #define CONFIG_SYS_CONSOLE_INFO_QUIET |
| 41 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 42 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 43 | #define CONFIG_BOOTARGS "Please use defined boot" |
| 44 | #define CONFIG_BOOTCOMMAND "run mmcboot" |
| 45 | #define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0" |
Minkyu Kang | aa44a45 | 2011-03-10 20:10:38 +0900 | [diff] [blame] | 46 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 47 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_LOAD_ADDR \ |
| 48 | - GENERATED_GBL_DATA_SIZE) |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 49 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 50 | #define CONFIG_SYS_MEM_TOP_HIDE (1 << 20) /* ram console */ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 51 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 52 | #define CONFIG_SYS_MONITOR_BASE 0x00000000 |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 53 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 54 | /* memtest works on */ |
| 55 | #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE |
| 56 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x5000000) |
| 57 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x4800000) |
| 58 | |
| 59 | #define CONFIG_SYS_TEXT_BASE 0x44800000 |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 60 | |
| 61 | #define CONFIG_MTD_DEVICE |
| 62 | #define CONFIG_MTD_PARTITIONS |
| 63 | |
| 64 | /* Actual modem binary size is 16MiB. Add 2MiB for bad block handling */ |
| 65 | #define MTDIDS_DEFAULT "onenand0=samsung-onenand" |
| 66 | |
| 67 | #define MTDPARTS_DEFAULT "mtdparts=samsung-onenand:"\ |
| 68 | "128k(s-boot)"\ |
| 69 | ",896k(bootloader)"\ |
| 70 | ",256k(params)"\ |
| 71 | ",2816k(config)"\ |
| 72 | ",8m(csa)"\ |
| 73 | ",7m(kernel)"\ |
| 74 | ",1m(log)"\ |
| 75 | ",12m(modem)"\ |
| 76 | ",60m(qboot)"\ |
| 77 | ",-(UBI)\0" |
| 78 | |
| 79 | #define NORMAL_MTDPARTS_DEFAULT MTDPARTS_DEFAULT |
| 80 | |
| 81 | #define MBRPARTS_DEFAULT "20M(permanent)"\ |
| 82 | ",20M(boot)"\ |
| 83 | ",1G(system)"\ |
| 84 | ",100M(swap)"\ |
| 85 | ",-(UMS)\0" |
| 86 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 87 | #define CONFIG_ENV_UBI_MTD " ubi.mtd=${ubiblock} ubi.mtd=4 ubi.mtd=7" |
| 88 | #define CONFIG_BOOTBLOCK "10" |
| 89 | #define CONFIG_UBIBLOCK "9" |
| 90 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 91 | #define CONFIG_ENV_IS_IN_MMC |
| 92 | #define CONFIG_SYS_MMC_ENV_DEV CONFIG_MMC_DEFAULT_DEV |
| 93 | #define CONFIG_ENV_SIZE 4096 |
| 94 | #define CONFIG_ENV_OFFSET ((32 - 4) << 10) /* 32KiB - 4KiB */ |
| 95 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 96 | #define CONFIG_ENV_UBIFS_OPTION " rootflags=bulk_read,no_chk_data_crc " |
| 97 | #define CONFIG_ENV_FLASHBOOT CONFIG_ENV_UBI_MTD CONFIG_ENV_UBIFS_OPTION \ |
| 98 | "${mtdparts}" |
| 99 | |
| 100 | #define CONFIG_ENV_COMMON_BOOT "${console} ${meminfo}" |
| 101 | |
Piotr Wilczek | 815a607 | 2014-01-22 15:54:34 +0100 | [diff] [blame] | 102 | #define CONFIG_ENV_VARS_UBOOT_CONFIG |
| 103 | #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 104 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 105 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 106 | "updateb=" \ |
| 107 | "onenand erase 0x0 0x100000;" \ |
| 108 | "onenand write 0x42008000 0x0 0x100000\0" \ |
| 109 | "updatek=" \ |
| 110 | "onenand erase 0xc00000 0x500000;" \ |
| 111 | "onenand write 0x41008000 0xc00000 0x500000\0" \ |
| 112 | "bootk=" \ |
| 113 | "run loaduimage; bootm 0x40007FC0\0" \ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 114 | "updatebackup=" \ |
Jaehoon Chung | 188c42b | 2014-04-30 09:09:15 +0900 | [diff] [blame] | 115 | "mmc dev 0 2; mmc write 0 0x42100000 0 0x200;" \ |
| 116 | "mmc dev 0 0\0" \ |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 117 | "updatebootb=" \ |
| 118 | "mmc read 0 0x42100000 0x80 0x200; run updatebackup\0" \ |
| 119 | "lpj=lpj=3981312\0" \ |
| 120 | "ubifsboot=" \ |
| 121 | "set bootargs root=ubi0!rootfs rootfstype=ubifs ${lpj} " \ |
| 122 | CONFIG_ENV_FLASHBOOT " ${opts} ${lcdinfo} " \ |
| 123 | CONFIG_ENV_COMMON_BOOT "; run bootk\0" \ |
| 124 | "tftpboot=" \ |
| 125 | "set bootargs root=ubi0!rootfs rootfstype=ubifs " \ |
| 126 | CONFIG_ENV_FLASHBOOT " ${opts} ${lcdinfo} " \ |
| 127 | CONFIG_ENV_COMMON_BOOT \ |
| 128 | "; tftp 0x40007FC0 uImage; bootm 0x40007FC0\0" \ |
| 129 | "nfsboot=" \ |
| 130 | "set bootargs root=/dev/nfs rw " \ |
| 131 | "nfsroot=${nfsroot},nolock,tcp " \ |
| 132 | "ip=${ipaddr}:${serverip}:${gatewayip}:" \ |
| 133 | "${netmask}:generic:usb0:off " CONFIG_ENV_COMMON_BOOT \ |
| 134 | "; run bootk\0" \ |
| 135 | "ramfsboot=" \ |
| 136 | "set bootargs root=/dev/ram0 rw rootfstype=ext2 " \ |
| 137 | "${console} ${meminfo} " \ |
| 138 | "initrd=0x43000000,8M ramdisk=8192\0" \ |
| 139 | "mmcboot=" \ |
| 140 | "set bootargs root=/dev/mmcblk${mmcdev}p${mmcrootpart} " \ |
| 141 | "${lpj} rootwait ${console} ${meminfo} ${opts} ${lcdinfo}; " \ |
| 142 | "run loaduimage; bootm 0x40007FC0\0" \ |
| 143 | "bootchart=set opts init=/sbin/bootchartd; run bootcmd\0" \ |
| 144 | "boottrace=setenv opts initcall_debug; run bootcmd\0" \ |
| 145 | "mmcoops=mmc read 0 0x40000000 0x40 8; md 0x40000000 0x400\0" \ |
| 146 | "verify=n\0" \ |
| 147 | "rootfstype=ext4\0" \ |
| 148 | "console=" CONFIG_DEFAULT_CONSOLE \ |
| 149 | "mtdparts=" MTDPARTS_DEFAULT \ |
| 150 | "mbrparts=" MBRPARTS_DEFAULT \ |
| 151 | "meminfo=crashkernel=32M@0x50000000\0" \ |
| 152 | "nfsroot=/nfsroot/arm\0" \ |
| 153 | "bootblock=" CONFIG_BOOTBLOCK "\0" \ |
| 154 | "ubiblock=" CONFIG_UBIBLOCK" \0" \ |
| 155 | "ubi=enabled\0" \ |
| 156 | "loaduimage=fatload mmc ${mmcdev}:${mmcbootpart} 0x40007FC0 uImage\0" \ |
| 157 | "mmcdev=0\0" \ |
| 158 | "mmcbootpart=2\0" \ |
| 159 | "mmcrootpart=3\0" \ |
| 160 | "opts=always_resume=1" |
| 161 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 162 | #define CONFIG_USE_ONENAND_BOARD_INIT |
Lukasz Majewski | a08a649 | 2011-11-09 11:06:14 +0100 | [diff] [blame] | 163 | #define CONFIG_SAMSUNG_ONENAND |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 164 | #define CONFIG_SYS_ONENAND_BASE 0x0C000000 |
| 165 | |
Łukasz Majewski | 2427f5d | 2011-10-26 22:33:17 +0000 | [diff] [blame] | 166 | #include <asm/arch/gpio.h> |
| 167 | /* |
| 168 | * I2C Settings |
| 169 | */ |
Akshay Saraswat | 9b97b72 | 2014-05-13 10:30:15 +0530 | [diff] [blame] | 170 | #define CONFIG_SOFT_I2C_GPIO_SCL EXYNOS4_GPIO_B7 |
| 171 | #define CONFIG_SOFT_I2C_GPIO_SDA EXYNOS4_GPIO_B6 |
Łukasz Majewski | 2427f5d | 2011-10-26 22:33:17 +0000 | [diff] [blame] | 172 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 173 | #define CONFIG_CMD_I2C |
| 174 | |
Heiko Schocher | ea818db | 2013-01-29 08:53:15 +0100 | [diff] [blame] | 175 | #define CONFIG_SYS_I2C |
| 176 | #define CONFIG_SYS_I2C_SOFT /* I2C bit-banged */ |
| 177 | #define CONFIG_SYS_I2C_SOFT_SPEED 50000 |
| 178 | #define CONFIG_SYS_I2C_SOFT_SLAVE 0 |
Łukasz Majewski | 2427f5d | 2011-10-26 22:33:17 +0000 | [diff] [blame] | 179 | #define CONFIG_SOFT_I2C_READ_REPEATED_START |
Łukasz Majewski | 2427f5d | 2011-10-26 22:33:17 +0000 | [diff] [blame] | 180 | #define CONFIG_I2C_MULTI_BUS |
| 181 | #define CONFIG_SYS_MAX_I2C_BUS 7 |
| 182 | |
Łukasz Majewski | be3b51a | 2012-11-13 03:22:14 +0000 | [diff] [blame] | 183 | #define CONFIG_POWER |
| 184 | #define CONFIG_POWER_I2C |
| 185 | #define CONFIG_POWER_MAX8998 |
Łukasz Majewski | 2427f5d | 2011-10-26 22:33:17 +0000 | [diff] [blame] | 186 | |
Lukasz Majewski | ddc7e54 | 2011-12-15 10:32:12 +0100 | [diff] [blame] | 187 | #define CONFIG_USB_GADGET |
| 188 | #define CONFIG_USB_GADGET_S3C_UDC_OTG |
| 189 | #define CONFIG_USB_GADGET_DUALSPEED |
| 190 | |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 191 | /* |
| 192 | * SPI Settings |
| 193 | */ |
| 194 | #define CONFIG_SOFT_SPI |
| 195 | #define CONFIG_SOFT_SPI_MODE SPI_MODE_3 |
Akshay Saraswat | 9b97b72 | 2014-05-13 10:30:15 +0530 | [diff] [blame] | 196 | #define CONFIG_SOFT_SPI_GPIO_SCLK EXYNOS4_GPIO_Y31 |
| 197 | #define CONFIG_SOFT_SPI_GPIO_MOSI EXYNOS4_GPIO_Y33 |
| 198 | #define CONFIG_SOFT_SPI_GPIO_MISO EXYNOS4_GPIO_Y30 |
| 199 | #define CONFIG_SOFT_SPI_GPIO_CS EXYNOS4_GPIO_Y43 |
Piotr Wilczek | ff0fedd | 2012-10-19 05:34:03 +0000 | [diff] [blame] | 200 | |
| 201 | #define SPI_DELAY udelay(1) |
| 202 | #undef SPI_INIT |
| 203 | #define SPI_SCL(bit) universal_spi_scl(bit) |
| 204 | #define SPI_SDA(bit) universal_spi_sda(bit) |
| 205 | #define SPI_READ universal_spi_read() |
| 206 | #ifndef __ASSEMBLY__ |
| 207 | void universal_spi_scl(int bit); |
| 208 | void universal_spi_sda(int bit); |
| 209 | int universal_spi_read(void); |
| 210 | #endif |
| 211 | |
Przemyslaw Marczak | 679549d | 2014-01-22 11:24:12 +0100 | [diff] [blame] | 212 | /* Common misc for Samsung */ |
| 213 | #define CONFIG_MISC_COMMON |
| 214 | |
| 215 | #define CONFIG_MISC_INIT_R |
| 216 | |
Przemyslaw Marczak | 82b0a055 | 2014-01-22 11:24:20 +0100 | [diff] [blame] | 217 | /* Download menu - Samsung common */ |
| 218 | #define CONFIG_LCD_MENU |
| 219 | #define CONFIG_LCD_MENU_BOARD |
| 220 | |
| 221 | /* Download menu - definitions for check keys */ |
| 222 | #ifndef __ASSEMBLY__ |
| 223 | #include <power/max8998_pmic.h> |
| 224 | |
| 225 | #define KEY_PWR_PMIC_NAME "MAX8998_PMIC" |
| 226 | #define KEY_PWR_STATUS_REG MAX8998_REG_STATUS1 |
| 227 | #define KEY_PWR_STATUS_MASK (1 << 7) |
| 228 | #define KEY_PWR_INTERRUPT_REG MAX8998_REG_IRQ1 |
| 229 | #define KEY_PWR_INTERRUPT_MASK (1 << 7) |
| 230 | |
Akshay Saraswat | 9b97b72 | 2014-05-13 10:30:15 +0530 | [diff] [blame] | 231 | #define KEY_VOL_UP_GPIO EXYNOS4_GPIO_X20 |
| 232 | #define KEY_VOL_DOWN_GPIO EXYNOS4_GPIO_X21 |
Przemyslaw Marczak | 82b0a055 | 2014-01-22 11:24:20 +0100 | [diff] [blame] | 233 | #endif /* __ASSEMBLY__ */ |
| 234 | |
| 235 | /* LCD console */ |
| 236 | #define LCD_BPP LCD_COLOR16 |
| 237 | #define CONFIG_SYS_WHITE_ON_BLACK |
| 238 | |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 239 | /* |
| 240 | * LCD Settings |
| 241 | */ |
| 242 | #define CONFIG_EXYNOS_FB |
| 243 | #define CONFIG_LCD |
| 244 | #define CONFIG_CMD_BMP |
Przemyslaw Marczak | 2df21cb | 2014-01-22 11:24:16 +0100 | [diff] [blame] | 245 | #define CONFIG_BMP_16BPP |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 246 | #define CONFIG_LD9040 |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 247 | #define CONFIG_VIDEO_BMP_GZIP |
Przemyslaw Marczak | 903afe1 | 2013-11-29 18:30:43 +0100 | [diff] [blame] | 248 | #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE ((500 * 160 * 4) + 54) |
Piotr Wilczek | d984b9f | 2012-10-19 05:34:07 +0000 | [diff] [blame] | 249 | |
Piotr Wilczek | 3f41ffe | 2014-03-07 14:59:47 +0100 | [diff] [blame] | 250 | #define LCD_XRES 480 |
| 251 | #define LCD_YRES 800 |
| 252 | |
Minkyu Kang | 9e40808 | 2011-01-24 15:33:50 +0900 | [diff] [blame] | 253 | #endif /* __CONFIG_H */ |