Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2010 |
| 4 | * Texas Instruments Incorporated. |
| 5 | * Aneesh V <aneesh@ti.com> |
| 6 | * Steve Sakoman <steve@sakoman.com> |
| 7 | * |
| 8 | * TI OMAP4 common configuration settings |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
Enric Balletbò i Serra | 6c0a032 | 2013-12-06 21:30:18 +0100 | [diff] [blame] | 11 | #ifndef __CONFIG_TI_OMAP4_COMMON_H |
| 12 | #define __CONFIG_TI_OMAP4_COMMON_H |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 13 | |
Lokesh Vutla | 1d7b289 | 2013-09-03 19:47:18 +0530 | [diff] [blame] | 14 | #define CONFIG_MISC_INIT_R |
Lokesh Vutla | 1d7b289 | 2013-09-03 19:47:18 +0530 | [diff] [blame] | 15 | |
Lokesh Vutla | 1d7b289 | 2013-09-03 19:47:18 +0530 | [diff] [blame] | 16 | #ifndef CONFIG_SYS_L2CACHE_OFF |
| 17 | #define CONFIG_SYS_L2_PL310 1 |
| 18 | #define CONFIG_SYS_PL310_BASE 0x48242000 |
| 19 | #endif |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 20 | |
| 21 | /* Get CPU defs */ |
| 22 | #include <asm/arch/cpu.h> |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 23 | #include <asm/arch/omap.h> |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 24 | |
Lokesh Vutla | 1d7b289 | 2013-09-03 19:47:18 +0530 | [diff] [blame] | 25 | /* Use General purpose timer 1 */ |
| 26 | #define CONFIG_SYS_TIMERBASE GPT2_BASE |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 27 | |
| 28 | /* |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 29 | * Total Size Environment - 128k |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 30 | */ |
| 31 | #define CONFIG_ENV_SIZE (128 << 10) |
Lokesh Vutla | 1d7b289 | 2013-09-03 19:47:18 +0530 | [diff] [blame] | 32 | |
| 33 | /* |
| 34 | * For the DDR timing information we can either dynamically determine |
| 35 | * the timings to use or use pre-determined timings (based on using the |
| 36 | * dynamic method. Default to the static timing infomation. |
| 37 | */ |
| 38 | #define CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS |
| 39 | #ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS |
| 40 | #define CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION |
| 41 | #define CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS |
| 42 | #endif |
| 43 | |
Nishanth Menon | 9a0f400 | 2015-07-22 18:05:41 -0500 | [diff] [blame] | 44 | #include <configs/ti_armv7_omap.h> |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 45 | |
| 46 | /* |
| 47 | * Hardware drivers |
| 48 | */ |
Thomas Chou | c7b9686 | 2015-11-19 21:48:12 +0800 | [diff] [blame] | 49 | #define CONFIG_SYS_NS16550_CLK 48000000 |
Tom Rini | 53ee634 | 2015-09-17 16:47:03 -0400 | [diff] [blame] | 50 | #if defined(CONFIG_SPL_BUILD) || !defined(CONFIG_DM_SERIAL) |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 51 | #define CONFIG_SYS_NS16550_SERIAL |
| 52 | #define CONFIG_SYS_NS16550_REG_SIZE (-4) |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 53 | #define CONFIG_SYS_NS16550_COM3 UART3_BASE |
Tom Rini | 53ee634 | 2015-09-17 16:47:03 -0400 | [diff] [blame] | 54 | #endif |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 55 | |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 56 | /* TWL6030 */ |
Balaji T K | 14fa2dd | 2011-09-08 06:34:57 +0000 | [diff] [blame] | 57 | #ifndef CONFIG_SPL_BUILD |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 58 | #define CONFIG_TWL6030_POWER 1 |
Balaji T K | 14fa2dd | 2011-09-08 06:34:57 +0000 | [diff] [blame] | 59 | #endif |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 60 | |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 61 | /* USB */ |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 62 | |
| 63 | /* USB device configuration */ |
| 64 | #define CONFIG_USB_DEVICE 1 |
| 65 | #define CONFIG_USB_TTY 1 |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 66 | |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 67 | /* |
| 68 | * Environment setup |
| 69 | */ |
Tom Rini | 2a1a29c | 2015-12-10 16:46:03 -0500 | [diff] [blame] | 70 | #define BOOTENV_DEV_LEGACY_MMC(devtypeu, devtypel, instance) \ |
| 71 | "bootcmd_" #devtypel #instance "=" \ |
| 72 | "setenv mmcdev " #instance"; "\ |
| 73 | "setenv bootpart " #instance":2 ; "\ |
| 74 | "run mmcboot\0" |
| 75 | |
| 76 | #define BOOTENV_DEV_NAME_LEGACY_MMC(devtypeu, devtypel, instance) \ |
| 77 | #devtypel #instance " " |
| 78 | |
| 79 | #define BOOTENV_DEV_NAME_NAND(devtypeu, devtypel, instance) \ |
| 80 | #devtypel #instance " " |
| 81 | |
| 82 | #define BOOT_TARGET_DEVICES(func) \ |
| 83 | func(MMC, mmc, 0) \ |
| 84 | func(LEGACY_MMC, legacy_mmc, 0) \ |
| 85 | func(MMC, mmc, 1) \ |
| 86 | func(LEGACY_MMC, legacy_mmc, 1) \ |
| 87 | func(PXE, pxe, na) \ |
| 88 | func(DHCP, dhcp, na) |
| 89 | |
Tom Rini | 2a1a29c | 2015-12-10 16:46:03 -0500 | [diff] [blame] | 90 | #include <config_distro_bootcmd.h> |
Sekhar Nori | 88fdfcd | 2017-04-06 14:52:56 +0530 | [diff] [blame] | 91 | #include <environment/ti/mmc.h> |
Tom Rini | 2a1a29c | 2015-12-10 16:46:03 -0500 | [diff] [blame] | 92 | |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 93 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Tom Rini | fb3ad9b | 2014-03-28 15:03:29 -0400 | [diff] [blame] | 94 | DEFAULT_LINUX_BOOT_ENV \ |
Lokesh Vutla | 85d17be | 2015-08-28 13:35:07 +0530 | [diff] [blame] | 95 | DEFAULT_MMC_TI_ARGS \ |
Lokesh Vutla | 1e93cc8 | 2016-11-29 11:58:00 +0530 | [diff] [blame] | 96 | DEFAULT_FIT_TI_ARGS \ |
Aneesh V | d71a491 | 2011-11-21 23:38:58 +0000 | [diff] [blame] | 97 | "console=ttyO2,115200n8\0" \ |
Dan Murphy | a714321 | 2013-06-06 13:27:06 -0500 | [diff] [blame] | 98 | "fdtfile=undefined\0" \ |
SRICHARAN R | 143070d | 2013-04-04 23:39:27 +0000 | [diff] [blame] | 99 | "bootpart=0:2\0" \ |
| 100 | "bootdir=/boot\0" \ |
SRICHARAN R | aaed0a2 | 2013-04-04 23:39:47 +0000 | [diff] [blame] | 101 | "bootfile=zImage\0" \ |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 102 | "usbtty=cdc_acm\0" \ |
| 103 | "vram=16M\0" \ |
Ash Charles | ffe1691 | 2014-05-14 08:34:34 -0700 | [diff] [blame] | 104 | "loaduimage=load mmc ${mmcdev} ${loadaddr} uImage\0" \ |
Ash Charles | ffe1691 | 2014-05-14 08:34:34 -0700 | [diff] [blame] | 105 | "uimageboot=echo Booting from mmc${mmcdev} ...; " \ |
Lokesh Vutla | 85d17be | 2015-08-28 13:35:07 +0530 | [diff] [blame] | 106 | "run args_mmc; " \ |
Ash Charles | ffe1691 | 2014-05-14 08:34:34 -0700 | [diff] [blame] | 107 | "bootm ${loadaddr}\0" \ |
SRICHARAN R | 143070d | 2013-04-04 23:39:27 +0000 | [diff] [blame] | 108 | "findfdt="\ |
| 109 | "if test $board_name = sdp4430; then " \ |
| 110 | "setenv fdtfile omap4-sdp.dtb; fi; " \ |
| 111 | "if test $board_name = panda; then " \ |
Dan Murphy | 34f667b | 2013-04-18 06:29:53 +0000 | [diff] [blame] | 112 | "setenv fdtfile omap4-panda.dtb; fi;" \ |
Dan Murphy | 7d47d1c | 2013-06-13 11:21:13 -0500 | [diff] [blame] | 113 | "if test $board_name = panda-a4; then " \ |
| 114 | "setenv fdtfile omap4-panda-a4.dtb; fi;" \ |
Dan Murphy | 34f667b | 2013-04-18 06:29:53 +0000 | [diff] [blame] | 115 | "if test $board_name = panda-es; then " \ |
Dan Murphy | a714321 | 2013-06-06 13:27:06 -0500 | [diff] [blame] | 116 | "setenv fdtfile omap4-panda-es.dtb; fi;" \ |
Ash Charles | ffe1691 | 2014-05-14 08:34:34 -0700 | [diff] [blame] | 117 | "if test $board_name = duovero; then " \ |
Ash Charles | 9990717 | 2014-06-06 11:36:50 -0700 | [diff] [blame] | 118 | "setenv fdtfile omap4-duovero-parlor.dtb; fi;" \ |
Dan Murphy | a714321 | 2013-06-06 13:27:06 -0500 | [diff] [blame] | 119 | "if test $fdtfile = undefined; then " \ |
| 120 | "echo WARNING: Could not determine device tree to use; fi; \0" \ |
Tom Rini | 2a1a29c | 2015-12-10 16:46:03 -0500 | [diff] [blame] | 121 | BOOTENV |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 122 | |
Lokesh Vutla | dcc2357 | 2013-12-04 12:22:55 +0530 | [diff] [blame] | 123 | /* |
| 124 | * Defines for SPL |
| 125 | * It is known that this will break HS devices. Since the current size of |
| 126 | * SPL is overlapped with public stack and breaking non HS devices to boot. |
| 127 | * So moving TEXT_BASE down to non-HS limit. |
| 128 | */ |
| 129 | #define CONFIG_SPL_TEXT_BASE 0x40300000 |
Tom Rini | d3289aa | 2014-04-03 07:52:53 -0400 | [diff] [blame] | 130 | #define CONFIG_SYS_SPL_ARGS_ADDR (CONFIG_SYS_SDRAM_BASE + \ |
| 131 | (128 << 20)) |
Aneesh V | 16dc702 | 2011-09-08 11:05:49 -0400 | [diff] [blame] | 132 | |
Nishanth Menon | 4f80d5b | 2014-01-07 20:06:56 -0600 | [diff] [blame] | 133 | #ifdef CONFIG_SPL_BUILD |
| 134 | /* No need for i2c in SPL mode as we will use SRI2C for PMIC access on OMAP4 */ |
| 135 | #undef CONFIG_SYS_I2C |
Nishanth Menon | 4f80d5b | 2014-01-07 20:06:56 -0600 | [diff] [blame] | 136 | #endif |
| 137 | |
Enric Balletbò i Serra | 6c0a032 | 2013-12-06 21:30:18 +0100 | [diff] [blame] | 138 | #endif /* __CONFIG_TI_OMAP4_COMMON_H */ |