Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 2 | /* |
Wasim Khan | 2caa388 | 2021-01-13 12:01:23 +0100 | [diff] [blame] | 3 | * Copyright 2017-2021 NXP |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 4 | * Copyright 2015 Freescale Semiconductor |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_ARMV8_FSL_LAYERSCAPE_SOC_H_ |
| 8 | #define _ASM_ARMV8_FSL_LAYERSCAPE_SOC_H_ |
| 9 | |
Simon Glass | 89e0a3a | 2017-05-17 08:23:10 -0600 | [diff] [blame] | 10 | #ifndef __ASSEMBLY__ |
| 11 | #include <linux/types.h> |
| 12 | #ifdef CONFIG_FSL_LSCH2 |
| 13 | #include <asm/arch/immap_lsch2.h> |
| 14 | #endif |
| 15 | #ifdef CONFIG_FSL_LSCH3 |
| 16 | #include <asm/arch/immap_lsch3.h> |
| 17 | #endif |
| 18 | #endif |
Hou Zhiqiang | 337644c | 2021-01-29 12:47:05 +0800 | [diff] [blame] | 19 | #include <asm/arch/svr.h> |
Simon Glass | 89e0a3a | 2017-05-17 08:23:10 -0600 | [diff] [blame] | 20 | |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 21 | #ifdef CONFIG_SYS_FSL_CCSR_GUR_LE |
| 22 | #define gur_in32(a) in_le32(a) |
| 23 | #define gur_out32(a, v) out_le32(a, v) |
| 24 | #elif defined(CONFIG_SYS_FSL_CCSR_GUR_BE) |
| 25 | #define gur_in32(a) in_be32(a) |
| 26 | #define gur_out32(a, v) out_be32(a, v) |
| 27 | #endif |
| 28 | |
| 29 | #ifdef CONFIG_SYS_FSL_CCSR_SCFG_LE |
| 30 | #define scfg_in32(a) in_le32(a) |
| 31 | #define scfg_out32(a, v) out_le32(a, v) |
Ran Wang | 250d9d0 | 2017-09-04 18:46:47 +0800 | [diff] [blame] | 32 | #define scfg_clrbits32(addr, clear) clrbits_le32(addr, clear) |
| 33 | #define scfg_clrsetbits32(addr, clear, set) clrsetbits_le32(addr, clear, set) |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 34 | #elif defined(CONFIG_SYS_FSL_CCSR_SCFG_BE) |
| 35 | #define scfg_in32(a) in_be32(a) |
| 36 | #define scfg_out32(a, v) out_be32(a, v) |
Ran Wang | 250d9d0 | 2017-09-04 18:46:47 +0800 | [diff] [blame] | 37 | #define scfg_clrbits32(addr, clear) clrbits_be32(addr, clear) |
| 38 | #define scfg_clrsetbits32(addr, clear, set) clrsetbits_be32(addr, clear, set) |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 39 | #endif |
| 40 | |
Mingkai Hu | 1921899 | 2015-11-11 17:58:34 +0800 | [diff] [blame] | 41 | #ifdef CONFIG_SYS_FSL_PEX_LUT_LE |
| 42 | #define pex_lut_in32(a) in_le32(a) |
| 43 | #define pex_lut_out32(a, v) out_le32(a, v) |
| 44 | #elif defined(CONFIG_SYS_FSL_PEX_LUT_BE) |
| 45 | #define pex_lut_in32(a) in_be32(a) |
| 46 | #define pex_lut_out32(a, v) out_be32(a, v) |
| 47 | #endif |
Priyanka Jain | 3d31ec7 | 2016-11-17 12:29:52 +0530 | [diff] [blame] | 48 | #ifndef __ASSEMBLY__ |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 49 | struct cpu_type { |
| 50 | char name[15]; |
| 51 | u32 soc_ver; |
| 52 | u32 num_cores; |
| 53 | }; |
| 54 | |
| 55 | #define CPU_TYPE_ENTRY(n, v, nc) \ |
| 56 | { .name = #n, .soc_ver = SVR_##v, .num_cores = (nc)} |
Rajesh Bhagat | 583da8b | 2018-11-05 18:01:42 +0000 | [diff] [blame] | 57 | |
| 58 | #ifdef CONFIG_TFABOOT |
Rajesh Bhagat | 1dde2d2 | 2018-11-05 18:01:58 +0000 | [diff] [blame] | 59 | #define SMC_DRAM_BANK_INFO (0xC200FF12) |
York Sun | 8f3f4ef | 2018-11-05 18:02:09 +0000 | [diff] [blame] | 60 | #define SIP_SVC_RCW 0xC200FF18 |
Rajesh Bhagat | 1dde2d2 | 2018-11-05 18:01:58 +0000 | [diff] [blame] | 61 | |
| 62 | phys_size_t tfa_get_dram_size(void); |
| 63 | |
Rajesh Bhagat | 583da8b | 2018-11-05 18:01:42 +0000 | [diff] [blame] | 64 | enum boot_src { |
| 65 | BOOT_SOURCE_RESERVED = 0, |
| 66 | BOOT_SOURCE_IFC_NOR, |
| 67 | BOOT_SOURCE_IFC_NAND, |
| 68 | BOOT_SOURCE_QSPI_NOR, |
| 69 | BOOT_SOURCE_QSPI_NAND, |
| 70 | BOOT_SOURCE_XSPI_NOR, |
| 71 | BOOT_SOURCE_XSPI_NAND, |
| 72 | BOOT_SOURCE_SD_MMC, |
| 73 | BOOT_SOURCE_SD_MMC2, |
| 74 | BOOT_SOURCE_I2C1_EXTENDED, |
| 75 | }; |
| 76 | |
| 77 | enum boot_src get_boot_src(void); |
| 78 | #endif |
Priyanka Jain | 3d31ec7 | 2016-11-17 12:29:52 +0530 | [diff] [blame] | 79 | #endif |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 80 | #define SVR_WO_E 0xFFFFFE |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 81 | |
| 82 | #define SVR_MAJ(svr) (((svr) >> 4) & 0xf) |
| 83 | #define SVR_MIN(svr) (((svr) >> 0) & 0xf) |
Wenbin Song | a8f57a9 | 2017-01-17 18:31:15 +0800 | [diff] [blame] | 84 | #define SVR_REV(svr) (((svr) >> 0) & 0xff) |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 85 | #define IS_E_PROCESSOR(svr) (!((svr >> 8) & 0x1)) |
Meenakshi Aggarwal | ccb5d5d | 2020-10-29 19:16:16 +0530 | [diff] [blame] | 86 | #if defined(CONFIG_ARCH_LX2160A) || defined(CONFIG_ARCH_LX2162A) |
Priyanka Jain | ef76b2e | 2018-10-29 09:17:09 +0000 | [diff] [blame] | 87 | #define IS_C_PROCESSOR(svr) (!((svr >> 12) & 0x1)) |
Wasim Khan | 2caa388 | 2021-01-13 12:01:23 +0100 | [diff] [blame] | 88 | #define SVR_WO_CE 0xFFFFEE |
| 89 | #define SVR_SOC_VER(svr) (((svr) >> 8) & SVR_WO_CE) |
| 90 | #else |
| 91 | #define SVR_SOC_VER(svr) (((svr) >> 8) & SVR_WO_E) |
Priyanka Jain | ef76b2e | 2018-10-29 09:17:09 +0000 | [diff] [blame] | 92 | #endif |
Yuantian Tang | 044719b | 2019-10-10 17:19:37 +0800 | [diff] [blame] | 93 | #ifdef CONFIG_ARCH_LS1028A |
| 94 | #define IS_MULTIMEDIA_EN(svr) (!((svr >> 10) & 0x1)) |
| 95 | #endif |
Sriram Dash | 9282d26 | 2016-06-13 09:58:32 +0530 | [diff] [blame] | 96 | #define IS_SVR_REV(svr, maj, min) \ |
| 97 | ((SVR_MAJ(svr) == (maj)) && (SVR_MIN(svr) == (min))) |
Wenbin song | 5d8a61c | 2017-12-04 12:18:28 +0800 | [diff] [blame] | 98 | #define SVR_DEV(svr) ((svr) >> 8) |
| 99 | #define IS_SVR_DEV(svr, dev) (((svr) >> 16) == (dev)) |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 100 | |
Priyanka Jain | 3d31ec7 | 2016-11-17 12:29:52 +0530 | [diff] [blame] | 101 | #ifndef __ASSEMBLY__ |
Mingkai Hu | e4e93ea | 2015-10-26 19:47:51 +0800 | [diff] [blame] | 102 | #ifdef CONFIG_FSL_LSCH3 |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 103 | void fsl_lsch3_early_init_f(void); |
Rajesh Bhagat | 814e077 | 2018-01-17 16:13:00 +0530 | [diff] [blame] | 104 | int get_core_volt_from_fuse(void); |
Mingkai Hu | e4e93ea | 2015-10-26 19:47:51 +0800 | [diff] [blame] | 105 | #elif defined(CONFIG_FSL_LSCH2) |
| 106 | void fsl_lsch2_early_init_f(void); |
Hou Zhiqiang | 4ad5999 | 2016-12-09 16:09:00 +0800 | [diff] [blame] | 107 | int setup_chip_volt(void); |
| 108 | /* Setup core vdd in unit mV */ |
| 109 | int board_setup_core_volt(u32 vdd); |
Calvin Johnson | 6d6ef01 | 2018-03-08 15:30:33 +0530 | [diff] [blame] | 110 | #ifdef CONFIG_FSL_PFE |
| 111 | void init_pfe_scfg_dcfg_regs(void); |
| 112 | #endif |
Mingkai Hu | e4e93ea | 2015-10-26 19:47:51 +0800 | [diff] [blame] | 113 | #endif |
York Sun | bb7d342 | 2018-06-26 14:48:28 -0700 | [diff] [blame] | 114 | #ifdef CONFIG_QSPI_AHB_INIT |
| 115 | int qspi_ahb_init(void); |
| 116 | #endif |
Mingkai Hu | e4e93ea | 2015-10-26 19:47:51 +0800 | [diff] [blame] | 117 | |
Kuldeep Singh | 34aafb0 | 2019-11-21 17:15:17 +0530 | [diff] [blame] | 118 | #ifdef CONFIG_FSPI_AHB_EN_4BYTE |
| 119 | #define SYS_NXP_FSPI_LUTCR_LOCK 0x00000001 |
| 120 | #define SYS_NXP_FSPI_LUTCR_UNLOCK 0x00000002 |
| 121 | #define SYS_NXP_FSPI_LUTKEY 0x5AF05AF0 |
| 122 | int fspi_ahb_init(void); |
| 123 | #endif |
| 124 | |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 125 | void cpu_name(char *name); |
Prabhakar Kushwaha | 22cfe96 | 2015-11-05 12:00:14 +0530 | [diff] [blame] | 126 | #ifdef CONFIG_SYS_FSL_ERRATUM_A009635 |
| 127 | void erratum_a009635(void); |
| 128 | #endif |
York Sun | cbe8e1c | 2016-04-04 11:41:26 -0700 | [diff] [blame] | 129 | |
Hou Zhiqiang | 4b23ca8 | 2016-08-02 19:03:27 +0800 | [diff] [blame] | 130 | #ifdef CONFIG_SYS_FSL_ERRATUM_A010315 |
| 131 | void erratum_a010315(void); |
| 132 | #endif |
| 133 | |
York Sun | cbe8e1c | 2016-04-04 11:41:26 -0700 | [diff] [blame] | 134 | bool soc_has_dp_ddr(void); |
| 135 | bool soc_has_aiop(void); |
Hou Zhiqiang | 031bb87 | 2020-04-28 10:19:32 +0800 | [diff] [blame] | 136 | |
| 137 | #ifdef CONFIG_GIC_V3_ITS |
| 138 | int ls_gic_rd_tables_init(void *blob); |
| 139 | #endif |
Priyanka Jain | 3d31ec7 | 2016-11-17 12:29:52 +0530 | [diff] [blame] | 140 | #endif |
Simon Glass | 89e0a3a | 2017-05-17 08:23:10 -0600 | [diff] [blame] | 141 | |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 142 | #endif /* _ASM_ARMV8_FSL_LAYERSCAPE_SOC_H_ */ |