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 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 9 | #include <asm/arch/config.h> |
Bharat Bhushan | 9f076db | 2017-03-22 12:06:29 +0530 | [diff] [blame] | 10 | #include <asm/arch/stream_id_lsch2.h> |
Kuldeep Singh | 10669ed | 2020-06-25 12:56:22 +0530 | [diff] [blame] | 11 | #include <linux/sizes.h> |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 12 | |
Hou Zhiqiang | 904110c | 2017-01-10 16:44:15 +0800 | [diff] [blame] | 13 | #define CONFIG_SYS_CLK_FREQ 125000000 |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 14 | |
Rajesh Bhagat | 1f6180d | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 15 | #ifdef CONFIG_TFABOOT |
| 16 | #define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE |
| 17 | #else |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 18 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0) |
Rajesh Bhagat | 1f6180d | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 19 | #endif |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 20 | |
| 21 | #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000 |
| 22 | #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0 |
| 23 | #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
Prabhakar Kushwaha | 7d55960 | 2017-01-30 17:05:22 +0530 | [diff] [blame] | 24 | #define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 25 | |
| 26 | /* Generic Timer Definitions */ |
Yuantian Tang | b584510 | 2017-10-12 14:29:26 +0800 | [diff] [blame] | 27 | #define COUNTER_FREQUENCY 25000000 /* 25MHz */ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 28 | |
| 29 | /* CSU */ |
| 30 | #define CONFIG_LAYERSCAPE_NS_ACCESS |
| 31 | |
Kuldeep Singh | e0152db | 2020-05-28 11:42:53 +0530 | [diff] [blame] | 32 | /* PFE */ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 33 | #define CONFIG_SYS_FMAN_FW_ADDR 0x400d0000 |
Kuldeep Singh | e0152db | 2020-05-28 11:42:53 +0530 | [diff] [blame] | 34 | #define CONFIG_SYS_QE_FMAN_FW_LENGTH 0x300000 |
| 35 | |
| 36 | /*SPI device */ |
Kuldeep Singh | c93ad77 | 2020-05-12 12:54:07 +0530 | [diff] [blame] | 37 | #define CONFIG_SYS_FSL_QSPI_BASE 0x40000000 |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 38 | |
Yuantian Tang | ae02cf0 | 2018-01-03 15:53:10 +0800 | [diff] [blame] | 39 | /* SATA */ |
| 40 | #define CONFIG_SCSI_AHCI_PLAT |
| 41 | |
| 42 | #define CONFIG_SYS_SATA AHCI_BASE_ADDR |
| 43 | |
| 44 | #define CONFIG_SYS_SCSI_MAX_SCSI_ID 1 |
| 45 | #define CONFIG_SYS_SCSI_MAX_LUN 1 |
| 46 | #define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \ |
| 47 | CONFIG_SYS_SCSI_MAX_LUN) |
| 48 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 49 | /* I2C */ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 50 | |
Biwen Li | c5d0bd5 | 2021-02-05 19:01:55 +0800 | [diff] [blame] | 51 | /* GPIO */ |
| 52 | #ifdef CONFIG_DM_GPIO |
| 53 | #ifndef CONFIG_MPC8XXX_GPIO |
| 54 | #define CONFIG_MPC8XXX_GPIO |
| 55 | #endif |
| 56 | #endif |
| 57 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 58 | #define CONFIG_SYS_NS16550_SERIAL |
| 59 | #define CONFIG_SYS_NS16550_REG_SIZE 1 |
Hou Zhiqiang | 904110c | 2017-01-10 16:44:15 +0800 | [diff] [blame] | 60 | #define CONFIG_SYS_NS16550_CLK (get_serial_clock()) |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 61 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 62 | #define CONFIG_SYS_HZ 1000 |
| 63 | |
| 64 | #define CONFIG_HWCONFIG |
| 65 | #define HWCONFIG_BUFFER_SIZE 128 |
| 66 | |
Rajesh Bhagat | a81357a | 2017-11-30 16:44:38 +0530 | [diff] [blame] | 67 | #ifndef CONFIG_SPL_BUILD |
| 68 | #define BOOT_TARGET_DEVICES(func) \ |
| 69 | func(MMC, mmc, 0) \ |
Yunfeng Ding | d2c49aa | 2019-02-19 14:44:04 +0800 | [diff] [blame] | 70 | func(USB, usb, 0) \ |
| 71 | func(SCSI, scsi, 0) \ |
| 72 | func(DHCP, dhcp, na) |
Rajesh Bhagat | a81357a | 2017-11-30 16:44:38 +0530 | [diff] [blame] | 73 | #include <config_distro_bootcmd.h> |
| 74 | #endif |
| 75 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 76 | /* Initial environment variables */ |
| 77 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 78 | "verify=no\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 79 | "loadaddr=0x80100000\0" \ |
| 80 | "kernel_addr=0x100000\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 81 | "initrd_high=0xffffffffffffffff\0" \ |
Bhaskar Upadhaya | 4def378 | 2017-11-14 05:05:10 +0530 | [diff] [blame] | 82 | "kernel_start=0x1000000\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 83 | "kernel_load=0xa0000000\0" \ |
| 84 | "kernel_size=0x2800000\0" \ |
Udit Agarwal | 3fba231 | 2020-06-08 18:55:44 +0530 | [diff] [blame] | 85 | "bootm_size=0x10000000\0" \ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 86 | |
Rajesh Bhagat | a81357a | 2017-11-30 16:44:38 +0530 | [diff] [blame] | 87 | #undef CONFIG_BOOTCOMMAND |
Rajesh Bhagat | 1f6180d | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 88 | #ifdef CONFIG_TFABOOT |
Mian Yousaf Kaukab | 864c3db | 2021-04-14 12:33:58 +0200 | [diff] [blame] | 89 | #define QSPI_NOR_BOOTCOMMAND "sf probe 0:0; sf read $kernel_load "\ |
Rajesh Bhagat | 1f6180d | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 90 | "$kernel_start $kernel_size && "\ |
| 91 | "bootm $kernel_load" |
| 92 | #else |
Mian Yousaf Kaukab | 864c3db | 2021-04-14 12:33:58 +0200 | [diff] [blame] | 93 | #define CONFIG_BOOTCOMMAND "sf probe 0:0; sf read $kernel_load "\ |
Calvin Johnson | a802d1e | 2018-03-08 15:30:35 +0530 | [diff] [blame] | 94 | "$kernel_start $kernel_size && "\ |
| 95 | "bootm $kernel_load" |
Rajesh Bhagat | 1f6180d | 2018-11-05 18:02:53 +0000 | [diff] [blame] | 96 | #endif |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 97 | |
| 98 | /* Monitor Command Prompt */ |
| 99 | #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 100 | #define CONFIG_SYS_MAXARGS 64 /* max command args */ |
| 101 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 102 | #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
| 103 | |
Simon Glass | 457e51c | 2017-05-17 08:23:10 -0600 | [diff] [blame] | 104 | #include <asm/arch/soc.h> |
| 105 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 106 | #endif /* __LS1012A_COMMON_H */ |