1*5289e83aSChandan Nath /* 2*5289e83aSChandan Nath * am335x_evm.h 3*5289e83aSChandan Nath * 4*5289e83aSChandan Nath * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ 5*5289e83aSChandan Nath * 6*5289e83aSChandan Nath * This program is free software; you can redistribute it and/or 7*5289e83aSChandan Nath * modify it under the terms of the GNU General Public License as 8*5289e83aSChandan Nath * published by the Free Software Foundation version 2. 9*5289e83aSChandan Nath * 10*5289e83aSChandan Nath * This program is distributed "as is" WITHOUT ANY WARRANTY of any 11*5289e83aSChandan Nath * kind, whether express or implied; without even the implied warranty 12*5289e83aSChandan Nath * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*5289e83aSChandan Nath * GNU General Public License for more details. 14*5289e83aSChandan Nath */ 15*5289e83aSChandan Nath 16*5289e83aSChandan Nath #ifndef __CONFIG_AM335X_EVM_H 17*5289e83aSChandan Nath #define __CONFIG_AM335X_EVM_H 18*5289e83aSChandan Nath 19*5289e83aSChandan Nath #define CONFIG_AM335X 20*5289e83aSChandan Nath #define CONFIG_CMD_MEMORY /* for mtest */ 21*5289e83aSChandan Nath #undef CONFIG_GZIP 22*5289e83aSChandan Nath #undef CONFIG_ZLIB 23*5289e83aSChandan Nath #undef CONFIG_SYS_HUSH_PARSER 24*5289e83aSChandan Nath #undef CONFIG_CMD_NET 25*5289e83aSChandan Nath 26*5289e83aSChandan Nath #include <asm/arch/cpu.h> 27*5289e83aSChandan Nath #include <asm/arch/hardware.h> 28*5289e83aSChandan Nath 29*5289e83aSChandan Nath #define CONFIG_SETUP_PLL 30*5289e83aSChandan Nath #define CONFIG_AM335X_CONFIG_DDR 31*5289e83aSChandan Nath #define CONFIG_ENV_SIZE 0x400 32*5289e83aSChandan Nath #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (8 * 1024)) 33*5289e83aSChandan Nath #define CONFIG_SYS_PROMPT "AM335X# " 34*5289e83aSChandan Nath #define CONFIG_SYS_NO_FLASH 35*5289e83aSChandan Nath #define CONFIG_MACH_TYPE MACH_TYPE_TIAM335EVM 36*5289e83aSChandan Nath 37*5289e83aSChandan Nath #define CONFIG_CMD_ASKENV 38*5289e83aSChandan Nath #define CONFIG_VERSION_VARIABLE 39*5289e83aSChandan Nath 40*5289e83aSChandan Nath /* set to negative value for no autoboot */ 41*5289e83aSChandan Nath #define CONFIG_BOOTDELAY 3 42*5289e83aSChandan Nath #define CONFIG_SYS_AUTOLOAD "no" 43*5289e83aSChandan Nath #define CONFIG_BOOTFILE "uImage" 44*5289e83aSChandan Nath #define CONFIG_EXTRA_ENV_SETTINGS \ 45*5289e83aSChandan Nath "verify=yes\0" \ 46*5289e83aSChandan Nath "ramdisk_file=ramdisk.gz\0" \ 47*5289e83aSChandan Nath 48*5289e83aSChandan Nath /* Clock Defines */ 49*5289e83aSChandan Nath #define V_OSCK 24000000 /* Clock output from T2 */ 50*5289e83aSChandan Nath #define V_SCLK (V_OSCK >> 1) 51*5289e83aSChandan Nath 52*5289e83aSChandan Nath #define CONFIG_SYS_GBL_DATA_SIZE 128 /* size in bytes reserved for 53*5289e83aSChandan Nath initial data */ 54*5289e83aSChandan Nath #define CONFIG_CMD_ECHO 55*5289e83aSChandan Nath 56*5289e83aSChandan Nath /* max number of command args */ 57*5289e83aSChandan Nath #define CONFIG_SYS_MAXARGS 32 58*5289e83aSChandan Nath 59*5289e83aSChandan Nath /* Console I/O Buffer Size */ 60*5289e83aSChandan Nath #define CONFIG_SYS_CBSIZE 512 61*5289e83aSChandan Nath 62*5289e83aSChandan Nath /* Print Buffer Size */ 63*5289e83aSChandan Nath #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE \ 64*5289e83aSChandan Nath + sizeof(CONFIG_SYS_PROMPT) + 16) 65*5289e83aSChandan Nath 66*5289e83aSChandan Nath /* Boot Argument Buffer Size */ 67*5289e83aSChandan Nath #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE 68*5289e83aSChandan Nath 69*5289e83aSChandan Nath /* 70*5289e83aSChandan Nath * memtest works on 8 MB in DRAM after skipping 32MB from 71*5289e83aSChandan Nath * start addr of ram disk 72*5289e83aSChandan Nath */ 73*5289e83aSChandan Nath #define CONFIG_SYS_MEMTEST_START (PHYS_DRAM_1 + (64 * 1024 * 1024)) 74*5289e83aSChandan Nath #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START \ 75*5289e83aSChandan Nath + (8 * 1024 * 1024)) 76*5289e83aSChandan Nath 77*5289e83aSChandan Nath #undef CONFIG_SYS_CLKS_IN_HZ /* everything, incl board info, in Hz */ 78*5289e83aSChandan Nath #define CONFIG_SYS_LOAD_ADDR 0x81000000 /* Default load address */ 79*5289e83aSChandan Nath #define CONFIG_SYS_HZ 1000 /* 1ms clock */ 80*5289e83aSChandan Nath 81*5289e83aSChandan Nath /* Physical Memory Map */ 82*5289e83aSChandan Nath #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */ 83*5289e83aSChandan Nath #define PHYS_DRAM_1 0x80000000 /* DRAM Bank #1 */ 84*5289e83aSChandan Nath #define PHYS_DRAM_1_SIZE 0x10000000 /*(0x80000000 / 8) 256 MB */ 85*5289e83aSChandan Nath #define CONFIG_MAX_RAM_BANK_SIZE (1024 << 20) /* 1GB */ 86*5289e83aSChandan Nath 87*5289e83aSChandan Nath #define CONFIG_SYS_SDRAM_BASE PHYS_DRAM_1 88*5289e83aSChandan Nath #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - \ 89*5289e83aSChandan Nath GENERATED_GBL_DATA_SIZE) 90*5289e83aSChandan Nath /* Platform/Board specific defs */ 91*5289e83aSChandan Nath #define CONFIG_SYS_CLK_FREQ 24000000 92*5289e83aSChandan Nath #define CONFIG_SYS_TIMERBASE 0x48040000 /* Use Timer2 */ 93*5289e83aSChandan Nath #define CONFIG_SYS_PTV 2 /* Divisor: 2^(PTV+1) => 8 */ 94*5289e83aSChandan Nath #define CONFIG_SYS_HZ 1000 95*5289e83aSChandan Nath 96*5289e83aSChandan Nath /* NS16550 Configuration */ 97*5289e83aSChandan Nath #define CONFIG_SYS_NS16550 98*5289e83aSChandan Nath #define CONFIG_SYS_NS16550_SERIAL 99*5289e83aSChandan Nath #define CONFIG_SYS_NS16550_REG_SIZE (-4) 100*5289e83aSChandan Nath #define CONFIG_SYS_NS16550_CLK (48000000) 101*5289e83aSChandan Nath #define CONFIG_SYS_NS16550_COM1 0x44e09000 /* Base EVM has UART0 */ 102*5289e83aSChandan Nath #define CONFIG_SYS_NS16550_COM4 0x481A6000 /* UART3 on IA BOard */ 103*5289e83aSChandan Nath 104*5289e83aSChandan Nath #define CONFIG_BAUDRATE 115200 105*5289e83aSChandan Nath #define CONFIG_SYS_BAUDRATE_TABLE { 110, 300, 600, 1200, 2400, \ 106*5289e83aSChandan Nath 4800, 9600, 14400, 19200, 28800, 38400, 56000, 57600, 115200 } 107*5289e83aSChandan Nath 108*5289e83aSChandan Nath /* 109*5289e83aSChandan Nath * select serial console configuration 110*5289e83aSChandan Nath */ 111*5289e83aSChandan Nath #define CONFIG_SERIAL1 1 112*5289e83aSChandan Nath #define CONFIG_CONS_INDEX 1 113*5289e83aSChandan Nath #define CONFIG_SYS_CONSOLE_INFO_QUIET 114*5289e83aSChandan Nath 115*5289e83aSChandan Nath #define CONFIG_ENV_IS_NOWHERE 116*5289e83aSChandan Nath 117*5289e83aSChandan Nath #define CONFIG_SYS_TEXT_BASE 0x402f0400 118*5289e83aSChandan Nath 119*5289e83aSChandan Nath /* Unsupported features */ 120*5289e83aSChandan Nath #undef CONFIG_USE_IRQ 121*5289e83aSChandan Nath 122*5289e83aSChandan Nath #endif /* ! __CONFIG_AM335X_EVM_H */ 123