Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Freescale Semiconductor |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __FSL_MC_H__ |
| 7 | #define __FSL_MC_H__ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 10 | #include <linux/bitops.h> |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 11 | |
| 12 | #define MC_CCSR_BASE_ADDR \ |
| 13 | ((struct mc_ccsr_registers __iomem *)0x8340000) |
| 14 | |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 15 | #define GCR1_P1_STOP BIT(31) |
| 16 | #define GCR1_P2_STOP BIT(30) |
| 17 | #define GCR1_P1_DE_RST BIT(23) |
| 18 | #define GCR1_P2_DE_RST BIT(22) |
| 19 | #define GCR1_M1_DE_RST BIT(15) |
| 20 | #define GCR1_M2_DE_RST BIT(14) |
| 21 | #define GCR1_M_ALL_DE_RST (GCR1_M1_DE_RST | GCR1_M2_DE_RST) |
| 22 | #define GSR_FS_MASK 0x3fffffff |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 23 | |
| 24 | #define SOC_MC_PORTALS_BASE_ADDR ((void __iomem *)0x00080C000000) |
Prabhakar Kushwaha | 1f1c25c | 2015-07-02 11:28:59 +0530 | [diff] [blame] | 25 | #define SOC_QBMAN_PORTALS_BASE_ADDR ((void __iomem *)0x000818000000) |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 26 | #define SOC_MC_PORTAL_STRIDE 0x10000 |
| 27 | |
| 28 | #define SOC_MC_PORTAL_ADDR(_portal_id) \ |
| 29 | ((void __iomem *)((uintptr_t)SOC_MC_PORTALS_BASE_ADDR + \ |
| 30 | (_portal_id) * SOC_MC_PORTAL_STRIDE)) |
| 31 | |
Prabhakar Kushwaha | 1730a17 | 2015-11-04 12:25:59 +0530 | [diff] [blame] | 32 | #define MC_PORTAL_OFFSET_TO_PORTAL_ID(_portal_offset) \ |
| 33 | ((_portal_offset) / SOC_MC_PORTAL_STRIDE) |
| 34 | |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 35 | struct mc_ccsr_registers { |
| 36 | u32 reg_gcr1; |
| 37 | u32 reserved1; |
| 38 | u32 reg_gsr; |
| 39 | u32 reserved2; |
| 40 | u32 reg_sicbalr; |
| 41 | u32 reg_sicbahr; |
| 42 | u32 reg_sicapr; |
| 43 | u32 reserved3; |
| 44 | u32 reg_mcfbalr; |
| 45 | u32 reg_mcfbahr; |
| 46 | u32 reg_mcfapr; |
| 47 | u32 reserved4[0x2f1]; |
| 48 | u32 reg_psr; |
| 49 | u32 reserved5; |
| 50 | u32 reg_brr[2]; |
| 51 | u32 reserved6[0x80]; |
| 52 | u32 reg_error[]; |
| 53 | }; |
| 54 | |
Nipun Gupta | a78df40 | 2018-08-20 16:01:14 +0530 | [diff] [blame] | 55 | void fdt_fsl_mc_fixup_iommu_map_entry(void *blob); |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 56 | int get_mc_boot_status(void); |
Prabhakar Kushwaha | fb4a87a | 2015-11-04 12:25:58 +0530 | [diff] [blame] | 57 | int get_dpl_apply_status(void); |
Mian Yousaf Kaukab | 7e96804 | 2018-12-18 14:01:17 +0100 | [diff] [blame] | 58 | int is_lazy_dpl_addr_valid(void); |
Meenakshi Aggarwal | cf0bbbd | 2019-05-23 15:13:43 +0530 | [diff] [blame] | 59 | void fdt_fixup_mc_ddr(u64 *base, u64 *size); |
Prabhakar Kushwaha | fb4a87a | 2015-11-04 12:25:58 +0530 | [diff] [blame] | 60 | #ifdef CONFIG_SYS_LS_MC_DRAM_AIOP_IMG_OFFSET |
| 61 | int get_aiop_apply_status(void); |
| 62 | #endif |
| 63 | u64 mc_get_dram_addr(void); |
Bhupesh Sharma | 422cb08 | 2015-03-19 09:20:43 -0700 | [diff] [blame] | 64 | unsigned long mc_get_dram_block_size(void); |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 65 | int fsl_mc_ldpaa_init(struct bd_info *bis); |
| 66 | int fsl_mc_ldpaa_exit(struct bd_info *bd); |
Bogdan Purcareata | 33a8991 | 2017-05-24 16:40:21 +0000 | [diff] [blame] | 67 | void mc_env_boot(void); |
J. German Rivera | b940ca6 | 2014-06-23 15:15:55 -0700 | [diff] [blame] | 68 | #endif |