Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2016 Freescale Semiconductor |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef __LS1012A_COMMON_H |
| 8 | #define __LS1012A_COMMON_H |
| 9 | |
| 10 | #define CONFIG_FSL_LAYERSCAPE |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 11 | #define CONFIG_GICV2 |
| 12 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 13 | #include <asm/arch/config.h> |
Bharat Bhushan | 9f076db | 2017-03-22 12:06:29 +0530 | [diff] [blame] | 14 | #include <asm/arch/stream_id_lsch2.h> |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 15 | |
| 16 | #define CONFIG_SUPPORT_RAW_INITRD |
| 17 | |
| 18 | #define CONFIG_DISPLAY_BOARDINFO_LATE |
| 19 | |
| 20 | #define CONFIG_SYS_TEXT_BASE 0x40100000 |
| 21 | |
Hou Zhiqiang | 904110c | 2017-01-10 16:44:15 +0800 | [diff] [blame] | 22 | #define CONFIG_SYS_CLK_FREQ 125000000 |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 23 | |
| 24 | #define CONFIG_SKIP_LOWLEVEL_INIT |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 25 | |
| 26 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0) |
| 27 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000) |
| 28 | |
| 29 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000 |
| 30 | #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0 |
| 31 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
Prabhakar Kushwaha | 7d55960 | 2017-01-30 17:05:22 +0530 | [diff] [blame] | 32 | #define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 33 | |
| 34 | /* Generic Timer Definitions */ |
| 35 | #define COUNTER_FREQUENCY CONFIG_SYS_CLK_FREQ/4 /* 25MHz */ |
| 36 | |
| 37 | /* CSU */ |
| 38 | #define CONFIG_LAYERSCAPE_NS_ACCESS |
| 39 | |
| 40 | /* Size of malloc() pool */ |
| 41 | #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024) |
| 42 | |
| 43 | /*SPI device */ |
| 44 | #ifdef CONFIG_QSPI_BOOT |
| 45 | #define CONFIG_SYS_QE_FW_IN_SPIFLASH |
| 46 | #define CONFIG_SYS_FMAN_FW_ADDR 0x400d0000 |
| 47 | #define CONFIG_ENV_SPI_BUS 0 |
| 48 | #define CONFIG_ENV_SPI_CS 0 |
| 49 | #define CONFIG_ENV_SPI_MAX_HZ 1000000 |
| 50 | #define CONFIG_ENV_SPI_MODE 0x03 |
| 51 | #define CONFIG_SPI_FLASH_SPANSION |
| 52 | #define CONFIG_FSL_SPI_INTERFACE |
| 53 | #define CONFIG_SF_DATAFLASH |
| 54 | |
| 55 | #define CONFIG_FSL_QSPI |
| 56 | #define QSPI0_AMBA_BASE 0x40000000 |
| 57 | #define CONFIG_SPI_FLASH_SPANSION |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 58 | |
Suresh Gupta | 5e3f763 | 2017-04-25 14:51:38 +0530 | [diff] [blame] | 59 | #define FSL_QSPI_FLASH_SIZE SZ_64M |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 60 | #define FSL_QSPI_FLASH_NUM 2 |
| 61 | |
| 62 | /* |
| 63 | * Environment |
| 64 | */ |
| 65 | #define CONFIG_ENV_OVERWRITE |
| 66 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 67 | #define CONFIG_ENV_SIZE 0x40000 /* 256KB */ |
| 68 | #define CONFIG_ENV_OFFSET 0x200000 /* 2MB */ |
| 69 | #define CONFIG_ENV_SECT_SIZE 0x40000 |
| 70 | #endif |
| 71 | |
| 72 | /* I2C */ |
| 73 | #define CONFIG_SYS_I2C |
| 74 | #define CONFIG_SYS_I2C_MXC |
| 75 | #define CONFIG_SYS_I2C_MXC_I2C1 /* enable I2C bus 1 */ |
| 76 | #define CONFIG_SYS_I2C_MXC_I2C2 /* enable I2C bus 2 */ |
| 77 | |
| 78 | #define CONFIG_CONS_INDEX 1 |
| 79 | #define CONFIG_SYS_NS16550_SERIAL |
| 80 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
Hou Zhiqiang | 904110c | 2017-01-10 16:44:15 +0800 | [diff] [blame] | 81 | #define CONFIG_SYS_NS16550_CLK (get_serial_clock()) |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 82 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 83 | #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
| 84 | |
| 85 | /* Command line configuration */ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 86 | #undef CONFIG_CMD_IMLS |
| 87 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 88 | #define CONFIG_SYS_HZ 1000 |
| 89 | |
| 90 | #define CONFIG_HWCONFIG |
| 91 | #define HWCONFIG_BUFFER_SIZE 128 |
| 92 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 93 | /* Initial environment variables */ |
| 94 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 95 | "verify=no\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 96 | "loadaddr=0x80100000\0" \ |
| 97 | "kernel_addr=0x100000\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 98 | "fdt_high=0xffffffffffffffff\0" \ |
| 99 | "initrd_high=0xffffffffffffffff\0" \ |
| 100 | "kernel_start=0xa00000\0" \ |
| 101 | "kernel_load=0xa0000000\0" \ |
| 102 | "kernel_size=0x2800000\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 103 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 104 | #define CONFIG_BOOTCOMMAND "sf probe 0:0; sf read $kernel_load "\ |
| 105 | "$kernel_start $kernel_size && "\ |
| 106 | "bootm $kernel_load" |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 107 | |
| 108 | /* Monitor Command Prompt */ |
| 109 | #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 110 | #define CONFIG_SYS_LONGHELP |
| 111 | #define CONFIG_CMDLINE_EDITING 1 |
| 112 | #define CONFIG_AUTO_COMPLETE |
| 113 | #define CONFIG_SYS_MAXARGS 64 /* max command args */ |
| 114 | |
| 115 | #define CONFIG_PANIC_HANG |
| 116 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
| 117 | |
Simon Glass | 457e51c | 2017-05-17 08:23:10 -0600 | [diff] [blame] | 118 | #include <asm/arch/soc.h> |
| 119 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 120 | #endif /* __LS1012A_COMMON_H */ |