1877bfe37SValentin Longchamp /* 2877bfe37SValentin Longchamp * (C) Copyright 2013 Keymile AG 3877bfe37SValentin Longchamp * Valentin Longchamp <valentin.longchamp@keymile.com> 4877bfe37SValentin Longchamp * 5877bfe37SValentin Longchamp * SPDX-License-Identifier: GPL-2.0+ 6877bfe37SValentin Longchamp */ 7877bfe37SValentin Longchamp 8877bfe37SValentin Longchamp #ifndef _CONFIG_KMP204X_H 9877bfe37SValentin Longchamp #define _CONFIG_KMP204X_H 10877bfe37SValentin Longchamp 11877bfe37SValentin Longchamp #define CONFIG_PHYS_64BIT 12877bfe37SValentin Longchamp #define CONFIG_PPC_P2041 13877bfe37SValentin Longchamp 14877bfe37SValentin Longchamp #define CONFIG_SYS_TEXT_BASE 0xfff80000 15877bfe37SValentin Longchamp 16877bfe37SValentin Longchamp #define CONFIG_KM_DEF_NETDEV "netdev=eth0\0" 17877bfe37SValentin Longchamp 18cf7707a1SValentin Longchamp /* an additionnal option is required for UBI as subpage access is 19cf7707a1SValentin Longchamp * supported in u-boot */ 20cf7707a1SValentin Longchamp #define CONFIG_KM_UBI_PART_BOOT_OPTS ",2048" 21cf7707a1SValentin Longchamp 22877bfe37SValentin Longchamp #define CONFIG_NAND_ECC_BCH 23877bfe37SValentin Longchamp 24877bfe37SValentin Longchamp /* common KM defines */ 25877bfe37SValentin Longchamp #include "keymile-common.h" 26877bfe37SValentin Longchamp 27877bfe37SValentin Longchamp #define CONFIG_SYS_RAMBOOT 28877bfe37SValentin Longchamp #define CONFIG_RAMBOOT_PBL 29877bfe37SValentin Longchamp #define CONFIG_RAMBOOT_TEXT_BASE CONFIG_SYS_TEXT_BASE 30877bfe37SValentin Longchamp #define CONFIG_RESET_VECTOR_ADDRESS 0xfffffffc 31*e4536f8eSMasahiro Yamada #define CONFIG_SYS_FSL_PBL_PBI board/keymile/kmp204x/pbi.cfg 32*e4536f8eSMasahiro Yamada #define CONFIG_SYS_FSL_PBL_RCW board/keymile/kmp204x/rcw_kmp204x.cfg 33877bfe37SValentin Longchamp 34877bfe37SValentin Longchamp /* High Level Configuration Options */ 35877bfe37SValentin Longchamp #define CONFIG_BOOKE 36877bfe37SValentin Longchamp #define CONFIG_E500 /* BOOKE e500 family */ 37877bfe37SValentin Longchamp #define CONFIG_E500MC /* BOOKE e500mc family */ 38877bfe37SValentin Longchamp #define CONFIG_SYS_BOOK3E_HV /* Category E.HV supported */ 39877bfe37SValentin Longchamp #define CONFIG_FSL_CORENET /* Freescale CoreNet platform */ 40877bfe37SValentin Longchamp #define CONFIG_MP /* support multiple processors */ 41877bfe37SValentin Longchamp 42877bfe37SValentin Longchamp #define CONFIG_SYS_FSL_CPC /* Corenet Platform Cache */ 43877bfe37SValentin Longchamp #define CONFIG_SYS_NUM_CPC CONFIG_NUM_DDR_CONTROLLERS 44877bfe37SValentin Longchamp #define CONFIG_FSL_ELBC /* Has Enhanced localbus controller */ 45877bfe37SValentin Longchamp #define CONFIG_PCI /* Enable PCI/PCIE */ 46877bfe37SValentin Longchamp #define CONFIG_PCIE1 /* PCIE controler 1 */ 47877bfe37SValentin Longchamp #define CONFIG_PCIE3 /* PCIE controler 3 */ 48877bfe37SValentin Longchamp #define CONFIG_FSL_PCI_INIT /* Use common FSL init code */ 49877bfe37SValentin Longchamp #define CONFIG_SYS_PCI_64BIT /* enable 64-bit PCI resources */ 50877bfe37SValentin Longchamp 51877bfe37SValentin Longchamp #define CONFIG_SYS_DPAA_RMAN /* RMan */ 52877bfe37SValentin Longchamp 53877bfe37SValentin Longchamp #define CONFIG_FSL_LAW /* Use common FSL init code */ 54877bfe37SValentin Longchamp 55877bfe37SValentin Longchamp /* Environment in SPI Flash */ 56877bfe37SValentin Longchamp #define CONFIG_SYS_EXTRA_ENV_RELOC 57877bfe37SValentin Longchamp #define CONFIG_ENV_IS_IN_SPI_FLASH 58877bfe37SValentin Longchamp #define CONFIG_ENV_SPI_BUS 0 59877bfe37SValentin Longchamp #define CONFIG_ENV_SPI_CS 0 60877bfe37SValentin Longchamp #define CONFIG_ENV_SPI_MAX_HZ 20000000 61877bfe37SValentin Longchamp #define CONFIG_ENV_SPI_MODE 0 62877bfe37SValentin Longchamp #define CONFIG_ENV_OFFSET 0x100000 /* 1MB for u-boot */ 63877bfe37SValentin Longchamp #define CONFIG_ENV_SIZE 0x004000 /* 16K env */ 64877bfe37SValentin Longchamp #define CONFIG_ENV_SECT_SIZE 0x010000 65877bfe37SValentin Longchamp #define CONFIG_ENV_OFFSET_REDUND 0x110000 66877bfe37SValentin Longchamp #define CONFIG_ENV_TOTAL_SIZE 0x020000 67877bfe37SValentin Longchamp 68877bfe37SValentin Longchamp #define CONFIG_SYS_REDUNDAND_ENVIRONMENT 69877bfe37SValentin Longchamp 70877bfe37SValentin Longchamp #ifndef __ASSEMBLY__ 71877bfe37SValentin Longchamp unsigned long get_board_sys_clk(unsigned long dummy); 72877bfe37SValentin Longchamp #endif 73877bfe37SValentin Longchamp #define CONFIG_SYS_CLK_FREQ get_board_sys_clk(0) 74877bfe37SValentin Longchamp 75877bfe37SValentin Longchamp /* 76877bfe37SValentin Longchamp * These can be toggled for performance analysis, otherwise use default. 77877bfe37SValentin Longchamp */ 78877bfe37SValentin Longchamp #define CONFIG_SYS_CACHE_STASHING 79877bfe37SValentin Longchamp #define CONFIG_BACKSIDE_L2_CACHE 80877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_L2CSR0 L2CSR0_L2E 81877bfe37SValentin Longchamp #define CONFIG_BTB /* toggle branch predition */ 82877bfe37SValentin Longchamp 83877bfe37SValentin Longchamp #define CONFIG_ENABLE_36BIT_PHYS 84877bfe37SValentin Longchamp 85877bfe37SValentin Longchamp #define CONFIG_ADDR_MAP 86877bfe37SValentin Longchamp #define CONFIG_SYS_NUM_ADDR_MAP 64 /* number of TLB1 entries */ 87877bfe37SValentin Longchamp 88877bfe37SValentin Longchamp #define CONFIG_POST CONFIG_SYS_POST_MEMORY /* test POST memory test */ 89877bfe37SValentin Longchamp #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */ 90877bfe37SValentin Longchamp #define CONFIG_SYS_MEMTEST_END 0x00800000 91877bfe37SValentin Longchamp #define CONFIG_SYS_ALT_MEMTEST 92877bfe37SValentin Longchamp #define CONFIG_PANIC_HANG /* do not reset board on panic */ 93877bfe37SValentin Longchamp 94877bfe37SValentin Longchamp /* 95877bfe37SValentin Longchamp * Config the L3 Cache as L3 SRAM 96877bfe37SValentin Longchamp */ 97877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_L3_ADDR CONFIG_RAMBOOT_TEXT_BASE 98877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_L3_ADDR_PHYS (0xf00000000ull | \ 99877bfe37SValentin Longchamp CONFIG_RAMBOOT_TEXT_BASE) 100877bfe37SValentin Longchamp #define CONFIG_SYS_L3_SIZE (1024 << 10) 101877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_L3_END (CONFIG_SYS_INIT_L3_ADDR + CONFIG_SYS_L3_SIZE) 102877bfe37SValentin Longchamp 103877bfe37SValentin Longchamp #define CONFIG_SYS_DCSRBAR 0xf0000000 104877bfe37SValentin Longchamp #define CONFIG_SYS_DCSRBAR_PHYS 0xf00000000ull 105877bfe37SValentin Longchamp 106877bfe37SValentin Longchamp /* 107877bfe37SValentin Longchamp * DDR Setup 108877bfe37SValentin Longchamp */ 109877bfe37SValentin Longchamp #define CONFIG_VERY_BIG_RAM 110877bfe37SValentin Longchamp #define CONFIG_SYS_DDR_SDRAM_BASE 0x00000000 111877bfe37SValentin Longchamp #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE 112877bfe37SValentin Longchamp 113877bfe37SValentin Longchamp #define CONFIG_DIMM_SLOTS_PER_CTLR 1 114877bfe37SValentin Longchamp #define CONFIG_CHIP_SELECTS_PER_CTRL (4 * CONFIG_DIMM_SLOTS_PER_CTLR) 115877bfe37SValentin Longchamp 116877bfe37SValentin Longchamp #define CONFIG_DDR_SPD 1175614e71bSYork Sun #define CONFIG_SYS_FSL_DDR3 118877bfe37SValentin Longchamp #define CONFIG_FSL_DDR_INTERACTIVE 119877bfe37SValentin Longchamp 120877bfe37SValentin Longchamp #define CONFIG_SYS_SPD_BUS_NUM 0 121877bfe37SValentin Longchamp #define SPD_EEPROM_ADDRESS 0x54 122877bfe37SValentin Longchamp #define CONFIG_SYS_SDRAM_SIZE 4096 /* for fixed parameter use */ 123877bfe37SValentin Longchamp 124877bfe37SValentin Longchamp #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */ 125877bfe37SValentin Longchamp #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 2 126877bfe37SValentin Longchamp 127877bfe37SValentin Longchamp /****************************************************************************** 128877bfe37SValentin Longchamp * (PRAM usage) 129877bfe37SValentin Longchamp * ... ------------------------------------------------------- 130877bfe37SValentin Longchamp * ... |ROOTFSSIZE | PNVRAM |PHRAM |RESERVED_PRAM | END_OF_RAM 131877bfe37SValentin Longchamp * ... |<------------------- pram -------------------------->| 132877bfe37SValentin Longchamp * ... ------------------------------------------------------- 133877bfe37SValentin Longchamp * @END_OF_RAM: 134877bfe37SValentin Longchamp * @CONFIG_KM_RESERVED_PRAM: reserved pram for special purpose 135877bfe37SValentin Longchamp * @CONFIG_KM_PHRAM: address for /var 136877bfe37SValentin Longchamp * @CONFIG_KM_PNVRAM: address for PNVRAM (for the application) 137877bfe37SValentin Longchamp * @CONFIG_KM_ROOTFSSIZE: address for rootfilesystem in RAM 138877bfe37SValentin Longchamp */ 139877bfe37SValentin Longchamp 140877bfe37SValentin Longchamp /* size of rootfs in RAM */ 141877bfe37SValentin Longchamp #define CONFIG_KM_ROOTFSSIZE 0x0 142877bfe37SValentin Longchamp /* pseudo-non volatile RAM [hex] */ 143877bfe37SValentin Longchamp #define CONFIG_KM_PNVRAM 0x80000 144877bfe37SValentin Longchamp /* physical RAM MTD size [hex] */ 145877bfe37SValentin Longchamp #define CONFIG_KM_PHRAM 0x100000 146877bfe37SValentin Longchamp /* resereved pram area at the end of memroy [hex] */ 147877bfe37SValentin Longchamp #define CONFIG_KM_RESERVED_PRAM 0x0 148877bfe37SValentin Longchamp /* enable protected RAM */ 149877bfe37SValentin Longchamp #define CONFIG_PRAM 0 150877bfe37SValentin Longchamp 151877bfe37SValentin Longchamp #define CONFIG_KM_CRAMFS_ADDR 0x2000000 152877bfe37SValentin Longchamp #define CONFIG_KM_KERNEL_ADDR 0x1000000 /* max kernel size 15.5Mbytes */ 153877bfe37SValentin Longchamp #define CONFIG_KM_FDT_ADDR 0x1F80000 /* max dtb size 0.5Mbytes */ 154877bfe37SValentin Longchamp 155877bfe37SValentin Longchamp /* 156877bfe37SValentin Longchamp * Local Bus Definitions 157877bfe37SValentin Longchamp */ 158877bfe37SValentin Longchamp 159877bfe37SValentin Longchamp /* Set the local bus clock 1/8 of plat clk, 2 clk delay LALE */ 160877bfe37SValentin Longchamp #define CONFIG_SYS_LBC_LCRR (LCRR_CLKDIV_8 | LCRR_EADC_2) 161877bfe37SValentin Longchamp 162877bfe37SValentin Longchamp /* Nand Flash */ 163877bfe37SValentin Longchamp #define CONFIG_NAND_FSL_ELBC 164877bfe37SValentin Longchamp #define CONFIG_SYS_NAND_BASE 0xffa00000 165877bfe37SValentin Longchamp #define CONFIG_SYS_NAND_BASE_PHYS 0xfffa00000ull 166877bfe37SValentin Longchamp 167877bfe37SValentin Longchamp #define CONFIG_SYS_NAND_BASE_LIST {CONFIG_SYS_NAND_BASE} 168877bfe37SValentin Longchamp #define CONFIG_SYS_MAX_NAND_DEVICE 1 169877bfe37SValentin Longchamp #define CONFIG_MTD_NAND_VERIFY_WRITE 170877bfe37SValentin Longchamp #define CONFIG_CMD_NAND 171877bfe37SValentin Longchamp #define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024) 172877bfe37SValentin Longchamp 173877bfe37SValentin Longchamp #define CONFIG_BCH 174877bfe37SValentin Longchamp 175877bfe37SValentin Longchamp /* NAND flash config */ 176877bfe37SValentin Longchamp #define CONFIG_SYS_NAND_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_NAND_BASE_PHYS) \ 177877bfe37SValentin Longchamp | BR_PS_8 /* Port Size = 8 bit */ \ 178877bfe37SValentin Longchamp | BR_MS_FCM /* MSEL = FCM */ \ 179877bfe37SValentin Longchamp | BR_V) /* valid */ 180877bfe37SValentin Longchamp 181877bfe37SValentin Longchamp #define CONFIG_SYS_NAND_OR_PRELIM (OR_AM_256KB /* length 256K */ \ 182877bfe37SValentin Longchamp | OR_FCM_BCTLD /* LBCTL not ass */ \ 183877bfe37SValentin Longchamp | OR_FCM_SCY_1 /* 1 clk wait cycle */ \ 184877bfe37SValentin Longchamp | OR_FCM_RST /* 1 clk read setup */ \ 185877bfe37SValentin Longchamp | OR_FCM_PGS /* Large page size */ \ 186877bfe37SValentin Longchamp | OR_FCM_CST) /* 0.25 command setup */ 187877bfe37SValentin Longchamp 188877bfe37SValentin Longchamp #define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NAND_BR_PRELIM /* NAND Base Address */ 189877bfe37SValentin Longchamp #define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NAND_OR_PRELIM /* NAND Options */ 190877bfe37SValentin Longchamp 191877bfe37SValentin Longchamp /* QRIO FPGA */ 192877bfe37SValentin Longchamp #define CONFIG_SYS_QRIO_BASE 0xfb000000 193877bfe37SValentin Longchamp #define CONFIG_SYS_QRIO_BASE_PHYS 0xffb000000ull 194877bfe37SValentin Longchamp 195877bfe37SValentin Longchamp #define CONFIG_SYS_QRIO_BR_PRELIM (BR_PHYS_ADDR(CONFIG_SYS_QRIO_BASE_PHYS) \ 196877bfe37SValentin Longchamp | BR_PS_8 /* Port Size 8 bits */ \ 197877bfe37SValentin Longchamp | BR_DECC_OFF /* no error corr */ \ 198877bfe37SValentin Longchamp | BR_MS_GPCM /* MSEL = GPCM */ \ 199877bfe37SValentin Longchamp | BR_V) /* valid */ 200877bfe37SValentin Longchamp 201877bfe37SValentin Longchamp #define CONFIG_SYS_QRIO_OR_PRELIM (OR_AM_64KB /* length 64K */ \ 202877bfe37SValentin Longchamp | OR_GPCM_BCTLD /* no LCTL assert */ \ 203877bfe37SValentin Longchamp | OR_GPCM_ACS_DIV4 /* LCS 1/4 clk after */ \ 204877bfe37SValentin Longchamp | OR_GPCM_SCY_2 /* 2 clk wait cycles */ \ 205877bfe37SValentin Longchamp | OR_GPCM_TRLX /* relaxed tmgs */ \ 206877bfe37SValentin Longchamp | OR_GPCM_EAD) /* extra bus clk cycles */ 207877bfe37SValentin Longchamp 208877bfe37SValentin Longchamp #define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_QRIO_BR_PRELIM /* QRIO Base Address */ 209877bfe37SValentin Longchamp #define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_QRIO_OR_PRELIM /* QRIO Options */ 210877bfe37SValentin Longchamp 211dd21f096SRainer Boschung /* bootcounter in QRIO */ 212dd21f096SRainer Boschung #define CONFIG_BOOTCOUNT_LIMIT 213dd21f096SRainer Boschung #define CONFIG_SYS_BOOTCOUNT_ADDR (CONFIG_SYS_QRIO_BASE + 0x20) 214dd21f096SRainer Boschung 215877bfe37SValentin Longchamp #define CONFIG_BOARD_EARLY_INIT_F 216877bfe37SValentin Longchamp #define CONFIG_BOARD_EARLY_INIT_R /* call board_early_init_r function */ 217f3e74d0aSRainer Boschung #define CONFIG_MISC_INIT_F 218877bfe37SValentin Longchamp #define CONFIG_MISC_INIT_R 219877bfe37SValentin Longchamp #define CONFIG_LAST_STAGE_INIT 220877bfe37SValentin Longchamp 221877bfe37SValentin Longchamp #define CONFIG_HWCONFIG 222877bfe37SValentin Longchamp 223877bfe37SValentin Longchamp /* define to use L1 as initial stack */ 224877bfe37SValentin Longchamp #define CONFIG_L1_INIT_RAM 225877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_RAM_LOCK 226877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_RAM_ADDR 0xffd00000 /* Initial L1 address */ 227877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH 0xf 228877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW CONFIG_SYS_INIT_RAM_ADDR 229877bfe37SValentin Longchamp /* The assembler doesn't like typecast */ 230877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_RAM_ADDR_PHYS \ 231877bfe37SValentin Longchamp ((CONFIG_SYS_INIT_RAM_ADDR_PHYS_HIGH * 1ull << 32) | \ 232877bfe37SValentin Longchamp CONFIG_SYS_INIT_RAM_ADDR_PHYS_LOW) 233877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_RAM_SIZE 0x00004000 234877bfe37SValentin Longchamp 235877bfe37SValentin Longchamp #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \ 236877bfe37SValentin Longchamp GENERATED_GBL_DATA_SIZE) 237877bfe37SValentin Longchamp #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET 238877bfe37SValentin Longchamp 239877bfe37SValentin Longchamp #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE 240877bfe37SValentin Longchamp #define CONFIG_SYS_MONITOR_LEN (512 * 1024) 241877bfe37SValentin Longchamp #define CONFIG_SYS_MALLOC_LEN (1024 * 1024) 242877bfe37SValentin Longchamp 243877bfe37SValentin Longchamp /* Serial Port - controlled on board with jumper J8 244877bfe37SValentin Longchamp * open - index 2 245877bfe37SValentin Longchamp * shorted - index 1 246877bfe37SValentin Longchamp */ 247877bfe37SValentin Longchamp #define CONFIG_CONS_INDEX 1 248877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550 249877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_SERIAL 250877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_REG_SIZE 1 251877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_CLK (get_bus_freq(0)/2) 252877bfe37SValentin Longchamp 253877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CCSRBAR+0x11C500) 254877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_CCSRBAR+0x11C600) 255877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_COM3 (CONFIG_SYS_CCSRBAR+0x11D500) 256877bfe37SValentin Longchamp #define CONFIG_SYS_NS16550_COM4 (CONFIG_SYS_CCSRBAR+0x11D600) 257877bfe37SValentin Longchamp 258877bfe37SValentin Longchamp #define CONFIG_KM_CONSOLE_TTY "ttyS0" 259877bfe37SValentin Longchamp 260877bfe37SValentin Longchamp /* Use the HUSH parser */ 261877bfe37SValentin Longchamp #define CONFIG_SYS_HUSH_PARSER 262877bfe37SValentin Longchamp 263877bfe37SValentin Longchamp /* pass open firmware flat tree */ 264877bfe37SValentin Longchamp #define CONFIG_OF_LIBFDT 265877bfe37SValentin Longchamp #define CONFIG_OF_BOARD_SETUP 266877bfe37SValentin Longchamp #define CONFIG_OF_STDOUT_VIA_ALIAS 267877bfe37SValentin Longchamp 268877bfe37SValentin Longchamp /* new uImage format support */ 269877bfe37SValentin Longchamp #define CONFIG_FIT 270877bfe37SValentin Longchamp #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ 271877bfe37SValentin Longchamp 272877bfe37SValentin Longchamp /* I2C */ 273f3e74d0aSRainer Boschung 274877bfe37SValentin Longchamp #define CONFIG_SYS_I2C 275f3e74d0aSRainer Boschung #define CONFIG_SYS_I2C_INIT_BOARD 276f3e74d0aSRainer Boschung #define CONFIG_SYS_I2C_SPEED 100000 /* deblocking */ 277877bfe37SValentin Longchamp #define CONFIG_SYS_NUM_I2C_BUSES 3 278877bfe37SValentin Longchamp #define CONFIG_SYS_I2C_MAX_HOPS 1 279877bfe37SValentin Longchamp #define CONFIG_SYS_I2C_FSL /* Use FSL I2C driver */ 280877bfe37SValentin Longchamp #define CONFIG_I2C_MULTI_BUS 281877bfe37SValentin Longchamp #define CONFIG_I2C_CMD_TREE 282877bfe37SValentin Longchamp #define CONFIG_SYS_FSL_I2C_SPEED 400000 283877bfe37SValentin Longchamp #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F 284877bfe37SValentin Longchamp #define CONFIG_SYS_FSL_I2C_OFFSET 0x118000 285877bfe37SValentin Longchamp #define CONFIG_SYS_I2C_BUSES { {0, {I2C_NULL_HOP} }, \ 286877bfe37SValentin Longchamp {0, {{I2C_MUX_PCA9547, 0x70, 1 } } }, \ 287877bfe37SValentin Longchamp {0, {{I2C_MUX_PCA9547, 0x70, 2 } } }, \ 288877bfe37SValentin Longchamp } 289f3e74d0aSRainer Boschung #ifndef __ASSEMBLY__ 290f3e74d0aSRainer Boschung void set_sda(int state); 291f3e74d0aSRainer Boschung void set_scl(int state); 292f3e74d0aSRainer Boschung int get_sda(void); 293f3e74d0aSRainer Boschung int get_scl(void); 294f3e74d0aSRainer Boschung #endif 295877bfe37SValentin Longchamp 296877bfe37SValentin Longchamp #define CONFIG_KM_IVM_BUS 1 /* I2C1 (Mux-Port 1)*/ 297877bfe37SValentin Longchamp 298877bfe37SValentin Longchamp /* 299877bfe37SValentin Longchamp * eSPI - Enhanced SPI 300877bfe37SValentin Longchamp */ 301877bfe37SValentin Longchamp #define CONFIG_FSL_ESPI 302877bfe37SValentin Longchamp #define CONFIG_SPI_FLASH 303877bfe37SValentin Longchamp #define CONFIG_SPI_FLASH_BAR /* 4 byte-addressing */ 304877bfe37SValentin Longchamp #define CONFIG_SPI_FLASH_STMICRO 30547c1180cSValentin Longchamp #define CONFIG_SPI_FLASH_SPANSION 306877bfe37SValentin Longchamp #define CONFIG_CMD_SF 307877bfe37SValentin Longchamp #define CONFIG_SF_DEFAULT_SPEED 20000000 308877bfe37SValentin Longchamp #define CONFIG_SF_DEFAULT_MODE 0 309877bfe37SValentin Longchamp 310877bfe37SValentin Longchamp /* 311877bfe37SValentin Longchamp * General PCI 312877bfe37SValentin Longchamp * Memory space is mapped 1-1, but I/O space must start from 0. 313877bfe37SValentin Longchamp */ 314877bfe37SValentin Longchamp 315877bfe37SValentin Longchamp /* controller 1, direct to uli, tgtid 3, Base address 20000 */ 316877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_MEM_VIRT 0x80000000 317877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_MEM_BUS 0xe0000000 318877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_MEM_PHYS 0xc00000000ull 319877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_MEM_SIZE 0x20000000 /* 512M */ 320877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_IO_VIRT 0xf8000000 321877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_IO_BUS 0x00000000 322877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_IO_PHYS 0xff8000000ull 323877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE1_IO_SIZE 0x00010000 /* 64k */ 324877bfe37SValentin Longchamp 325877bfe37SValentin Longchamp /* controller 3, Slot 1, tgtid 1, Base address 202000 */ 326877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_MEM_VIRT 0xa0000000 327877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_MEM_BUS 0xe0000000 328877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_MEM_PHYS 0xc20000000ull 329877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_MEM_SIZE 0x20000000 /* 512M */ 330877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_IO_VIRT 0xf8010000 331877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_IO_BUS 0x00000000 332877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_IO_PHYS 0xff8010000ull 333877bfe37SValentin Longchamp #define CONFIG_SYS_PCIE3_IO_SIZE 0x00010000 /* 64k */ 334877bfe37SValentin Longchamp 335877bfe37SValentin Longchamp /* Qman/Bman */ 336877bfe37SValentin Longchamp #define CONFIG_SYS_DPAA_QBMAN /* Support Q/Bman */ 337877bfe37SValentin Longchamp #define CONFIG_SYS_BMAN_NUM_PORTALS 10 338877bfe37SValentin Longchamp #define CONFIG_SYS_BMAN_MEM_BASE 0xf4000000 339877bfe37SValentin Longchamp #define CONFIG_SYS_BMAN_MEM_PHYS 0xff4000000ull 340877bfe37SValentin Longchamp #define CONFIG_SYS_BMAN_MEM_SIZE 0x00200000 341877bfe37SValentin Longchamp #define CONFIG_SYS_QMAN_NUM_PORTALS 10 342877bfe37SValentin Longchamp #define CONFIG_SYS_QMAN_MEM_BASE 0xf4200000 343877bfe37SValentin Longchamp #define CONFIG_SYS_QMAN_MEM_PHYS 0xff4200000ull 344877bfe37SValentin Longchamp #define CONFIG_SYS_QMAN_MEM_SIZE 0x00200000 345877bfe37SValentin Longchamp 346877bfe37SValentin Longchamp #define CONFIG_SYS_DPAA_FMAN 347877bfe37SValentin Longchamp #define CONFIG_SYS_DPAA_PME 348877bfe37SValentin Longchamp /* Default address of microcode for the Linux Fman driver 349877bfe37SValentin Longchamp * env is stored at 0x100000, sector size is 0x10000, x2 (redundant) 350877bfe37SValentin Longchamp * ucode is stored after env, so we got 0x120000. 351877bfe37SValentin Longchamp */ 352877bfe37SValentin Longchamp #define CONFIG_SYS_QE_FW_IN_SPIFLASH 353877bfe37SValentin Longchamp #define CONFIG_SYS_QE_FMAN_FW_ADDR 0x120000 354877bfe37SValentin Longchamp #define CONFIG_SYS_QE_FMAN_FW_LENGTH 0x10000 355877bfe37SValentin Longchamp #define CONFIG_SYS_FDT_PAD (0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH) 356877bfe37SValentin Longchamp 357877bfe37SValentin Longchamp #define CONFIG_FMAN_ENET 358877bfe37SValentin Longchamp #define CONFIG_PHYLIB_10G 359877bfe37SValentin Longchamp #define CONFIG_PHY_MARVELL /* there is a marvell phy */ 360877bfe37SValentin Longchamp 361877bfe37SValentin Longchamp #define CONFIG_PCI_INDIRECT_BRIDGE 362877bfe37SValentin Longchamp #define CONFIG_PCI_PNP /* do pci plug-and-play */ 363877bfe37SValentin Longchamp #define CONFIG_E1000 364877bfe37SValentin Longchamp 365877bfe37SValentin Longchamp #define CONFIG_PCI_SCAN_SHOW /* show pci devices on startup */ 366877bfe37SValentin Longchamp #define CONFIG_DOS_PARTITION 367877bfe37SValentin Longchamp 368877bfe37SValentin Longchamp /* RGMII (FM1@DTESC5) is used as debug itf, it's the only one configured */ 369877bfe37SValentin Longchamp #define CONFIG_SYS_FM1_DTSEC5_PHY_ADDR 0x11 370877bfe37SValentin Longchamp #define CONFIG_SYS_TBIPA_VALUE 8 371877bfe37SValentin Longchamp #define CONFIG_PHYLIB /* recommended PHY management */ 372877bfe37SValentin Longchamp #define CONFIG_ETHPRIME "FM1@DTSEC5" 373877bfe37SValentin Longchamp #define CONFIG_PHY_GIGE /* Include GbE speed/duplex detection */ 374877bfe37SValentin Longchamp 375877bfe37SValentin Longchamp /* 376877bfe37SValentin Longchamp * Environment 377877bfe37SValentin Longchamp */ 378877bfe37SValentin Longchamp #define CONFIG_LOADS_ECHO /* echo on for serial download */ 379877bfe37SValentin Longchamp #define CONFIG_SYS_LOADS_BAUD_CHANGE /* allow baudrate change */ 380877bfe37SValentin Longchamp 381877bfe37SValentin Longchamp /* 382877bfe37SValentin Longchamp * additionnal command line configuration. 383877bfe37SValentin Longchamp */ 384877bfe37SValentin Longchamp #define CONFIG_CMD_PCI 385877bfe37SValentin Longchamp #define CONFIG_CMD_NET 386877bfe37SValentin Longchamp 387877bfe37SValentin Longchamp /* we don't need flash support */ 388877bfe37SValentin Longchamp #define CONFIG_SYS_NO_FLASH 389877bfe37SValentin Longchamp #undef CONFIG_CMD_IMLS 390877bfe37SValentin Longchamp #undef CONFIG_CMD_FLASH 391877bfe37SValentin Longchamp #undef CONFIG_FLASH_CFI_MTD 392877bfe37SValentin Longchamp #undef CONFIG_JFFS2_CMDLINE 393877bfe37SValentin Longchamp 394877bfe37SValentin Longchamp /* 395877bfe37SValentin Longchamp * For booting Linux, the board info and command line data 396877bfe37SValentin Longchamp * have to be in the first 64 MB of memory, since this is 397877bfe37SValentin Longchamp * the maximum mapped by the Linux kernel during initialization. 398877bfe37SValentin Longchamp */ 399877bfe37SValentin Longchamp #define CONFIG_SYS_BOOTMAPSZ (64 << 20) /* Initial Memory for Linux */ 400877bfe37SValentin Longchamp #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ 401877bfe37SValentin Longchamp 402877bfe37SValentin Longchamp #ifdef CONFIG_CMD_KGDB 403877bfe37SValentin Longchamp #define CONFIG_KGDB_BAUDRATE 230400 /* speed to run kgdb serial port */ 404877bfe37SValentin Longchamp #endif 405877bfe37SValentin Longchamp 406877bfe37SValentin Longchamp #define __USB_PHY_TYPE utmi 407877bfe37SValentin Longchamp 408877bfe37SValentin Longchamp /* 409877bfe37SValentin Longchamp * Environment Configuration 410877bfe37SValentin Longchamp */ 411877bfe37SValentin Longchamp #define CONFIG_ENV_OVERWRITE 412877bfe37SValentin Longchamp #ifndef CONFIG_KM_DEF_ENV /* if not set by keymile-common.h */ 413877bfe37SValentin Longchamp #define CONFIG_KM_DEF_ENV "km-common=empty\0" 414877bfe37SValentin Longchamp #endif 415877bfe37SValentin Longchamp 416877bfe37SValentin Longchamp #ifndef MTDIDS_DEFAULT 417877bfe37SValentin Longchamp # define MTDIDS_DEFAULT "nand0=fsl_elbc_nand" 418877bfe37SValentin Longchamp #endif /* MTDIDS_DEFAULT */ 419877bfe37SValentin Longchamp 420877bfe37SValentin Longchamp #ifndef MTDPARTS_DEFAULT 421877bfe37SValentin Longchamp # define MTDPARTS_DEFAULT "mtdparts=" \ 422877bfe37SValentin Longchamp "fsl_elbc_nand:" \ 423877bfe37SValentin Longchamp "-(" CONFIG_KM_UBI_PARTITION_NAME_BOOT ");" 424877bfe37SValentin Longchamp #endif /* MTDPARTS_DEFAULT */ 425877bfe37SValentin Longchamp 426877bfe37SValentin Longchamp /* architecture specific default bootargs */ 427877bfe37SValentin Longchamp #define CONFIG_KM_DEF_BOOT_ARGS_CPU "" 428877bfe37SValentin Longchamp 429877bfe37SValentin Longchamp /* FIXME: FDT_ADDR is unspecified */ 430877bfe37SValentin Longchamp #define CONFIG_KM_DEF_ENV_CPU \ 431877bfe37SValentin Longchamp "boot=bootm ${load_addr_r} - ${fdt_addr_r}\0" \ 432877bfe37SValentin Longchamp "cramfsloadfdt=" \ 433877bfe37SValentin Longchamp "cramfsload ${fdt_addr_r} " \ 434877bfe37SValentin Longchamp "fdt_0x${IVM_BoardId}_0x${IVM_HWKey}.dtb\0" \ 435877bfe37SValentin Longchamp "fdt_addr_r=" __stringify(CONFIG_KM_FDT_ADDR) "\0" \ 436877bfe37SValentin Longchamp "u-boot="__stringify(CONFIG_HOSTNAME) "/u-boot.pbl\0" \ 437877bfe37SValentin Longchamp "update=" \ 438877bfe37SValentin Longchamp "sf probe 0;sf erase 0 +${filesize};" \ 439877bfe37SValentin Longchamp "sf write ${load_addr_r} 0 ${filesize};\0" \ 440b1c2a7aeSGerlando Falauto "set_fdthigh=true\0" \ 441877bfe37SValentin Longchamp "" 442877bfe37SValentin Longchamp 443877bfe37SValentin Longchamp #define CONFIG_HW_ENV_SETTINGS \ 444877bfe37SValentin Longchamp "hwconfig=fsl_ddr:ctlr_intlv=cacheline\0" \ 445877bfe37SValentin Longchamp "usb_phy_type=" __stringify(__USB_PHY_TYPE) "\0" \ 446877bfe37SValentin Longchamp "usb_dr_mode=host\0" 447877bfe37SValentin Longchamp 448877bfe37SValentin Longchamp #define CONFIG_KM_NEW_ENV \ 449877bfe37SValentin Longchamp "newenv=sf probe 0;" \ 450877bfe37SValentin Longchamp "sf erase " __stringify(CONFIG_ENV_OFFSET) " " \ 451877bfe37SValentin Longchamp __stringify(CONFIG_ENV_TOTAL_SIZE)"\0" 452877bfe37SValentin Longchamp 453877bfe37SValentin Longchamp /* ppc_82xx is the equivalent to ppc_6xx, the generic ppc toolchain */ 454877bfe37SValentin Longchamp #ifndef CONFIG_KM_DEF_ARCH 455877bfe37SValentin Longchamp #define CONFIG_KM_DEF_ARCH "arch=ppc_82xx\0" 456877bfe37SValentin Longchamp #endif 457877bfe37SValentin Longchamp 458877bfe37SValentin Longchamp #define CONFIG_EXTRA_ENV_SETTINGS \ 459877bfe37SValentin Longchamp CONFIG_KM_DEF_ENV \ 460877bfe37SValentin Longchamp CONFIG_KM_DEF_ARCH \ 461877bfe37SValentin Longchamp CONFIG_KM_NEW_ENV \ 462877bfe37SValentin Longchamp CONFIG_HW_ENV_SETTINGS \ 463877bfe37SValentin Longchamp "EEprom_ivm=pca9547:70:9\0" \ 464877bfe37SValentin Longchamp "" 465877bfe37SValentin Longchamp 466877bfe37SValentin Longchamp #endif /* _CONFIG_KMP204X_H */ 467