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