Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2016 Freescale Semiconductor |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __LS1012A_COMMON_H |
| 7 | #define __LS1012A_COMMON_H |
| 8 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 9 | #include <asm/arch/config.h> |
Bharat Bhushan | c865131 | 2017-03-22 12:06:29 +0530 | [diff] [blame] | 10 | #include <asm/arch/stream_id_lsch2.h> |
Kuldeep Singh | 0226109 | 2020-06-25 12:56:22 +0530 | [diff] [blame] | 11 | #include <linux/sizes.h> |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 12 | |
Rajesh Bhagat | fcafef6 | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 13 | #ifdef CONFIG_TFABOOT |
| 14 | #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE |
| 15 | #else |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 16 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0) |
Rajesh Bhagat | fcafef6 | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 17 | #endif |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 18 | |
| 19 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000 |
| 20 | #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0 |
| 21 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
Prabhakar Kushwaha | 1fb2f11 | 2017-01-30 17:05:22 +0530 | [diff] [blame] | 22 | #define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 23 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 24 | /* CSU */ |
| 25 | #define CONFIG_LAYERSCAPE_NS_ACCESS |
| 26 | |
Kuldeep Singh | 14e956f | 2020-05-28 11:42:53 +0530 | [diff] [blame] | 27 | /*SPI device */ |
Kuldeep Singh | 1f73ca6 | 2020-05-12 12:54:07 +0530 | [diff] [blame] | 28 | #define CONFIG_SYS_FSL_QSPI_BASE 0x40000000 |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 29 | |
Yuantian Tang | 932c5b1 | 2018-01-03 15:53:10 +0800 | [diff] [blame] | 30 | /* SATA */ |
Yuantian Tang | 932c5b1 | 2018-01-03 15:53:10 +0800 | [diff] [blame] | 31 | |
| 32 | #define CONFIG_SYS_SATA AHCI_BASE_ADDR |
| 33 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 34 | /* I2C */ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 35 | |
Biwen Li | 672b999 | 2021-02-05 19:01:55 +0800 | [diff] [blame] | 36 | /* GPIO */ |
Biwen Li | 672b999 | 2021-02-05 19:01:55 +0800 | [diff] [blame] | 37 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 38 | #define CONFIG_SYS_NS16550_SERIAL |
| 39 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
Hou Zhiqiang | 3f91cda | 2017-01-10 16:44:15 +0800 | [diff] [blame] | 40 | #define CONFIG_SYS_NS16550_CLK (get_serial_clock()) |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 41 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 42 | #define CONFIG_HWCONFIG |
| 43 | #define HWCONFIG_BUFFER_SIZE 128 |
| 44 | |
Rajesh Bhagat | d59447a | 2017-11-30 16:44:38 +0530 | [diff] [blame] | 45 | #ifndef CONFIG_SPL_BUILD |
| 46 | #define BOOT_TARGET_DEVICES(func) \ |
| 47 | func(MMC, mmc, 0) \ |
Yunfeng Ding | 0c1d95e | 2019-02-19 14:44:04 +0800 | [diff] [blame] | 48 | func(USB, usb, 0) \ |
| 49 | func(SCSI, scsi, 0) \ |
| 50 | func(DHCP, dhcp, na) |
Rajesh Bhagat | d59447a | 2017-11-30 16:44:38 +0530 | [diff] [blame] | 51 | #include <config_distro_bootcmd.h> |
| 52 | #endif |
| 53 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 54 | /* Initial environment variables */ |
| 55 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 56 | "verify=no\0" \ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 57 | "loadaddr=0x80100000\0" \ |
| 58 | "kernel_addr=0x100000\0" \ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 59 | "initrd_high=0xffffffffffffffff\0" \ |
Bhaskar Upadhaya | 11385d8 | 2017-11-14 05:05:10 +0530 | [diff] [blame] | 60 | "kernel_start=0x1000000\0" \ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 61 | "kernel_load=0xa0000000\0" \ |
| 62 | "kernel_size=0x2800000\0" \ |
Udit Agarwal | 4fe5c55 | 2020-06-08 18:55:44 +0530 | [diff] [blame] | 63 | "bootm_size=0x10000000\0" \ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 64 | |
Rajesh Bhagat | fcafef6 | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 65 | #ifdef CONFIG_TFABOOT |
Mian Yousaf Kaukab | 2529deae | 2021-04-14 12:33:58 +0200 | [diff] [blame] | 66 | #define QSPI_NOR_BOOTCOMMAND "sf probe 0:0; sf read $kernel_load "\ |
Rajesh Bhagat | fcafef6 | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 67 | "$kernel_start $kernel_size && "\ |
| 68 | "bootm $kernel_load" |
Rajesh Bhagat | fcafef6 | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 69 | #endif |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 70 | |
| 71 | /* Monitor Command Prompt */ |
| 72 | #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 73 | #define CONFIG_SYS_MAXARGS 64 /* max command args */ |
| 74 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 75 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
| 76 | |
Simon Glass | 89e0a3a | 2017-05-17 08:23:10 -0600 | [diff] [blame] | 77 | #include <asm/arch/soc.h> |
| 78 | |
Prabhakar Kushwaha | 5543250 | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 79 | #endif /* __LS1012A_COMMON_H */ |