Xiubo Li | e87f3b3 | 2014-11-21 17:40:58 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 Freescale Semiconductor |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
Mingkai Hu | 435acd8 | 2015-10-26 19:47:41 +0800 | [diff] [blame] | 9 | #include <fsl_csu.h> |
Xiubo Li | e87f3b3 | 2014-11-21 17:40:58 +0800 | [diff] [blame] | 10 | #include <asm/arch/ns_access.h> |
Hou Zhiqiang | 664b652 | 2016-08-02 19:03:26 +0800 | [diff] [blame] | 11 | #include <asm/arch/fsl_serdes.h> |
Xiubo Li | e87f3b3 | 2014-11-21 17:40:58 +0800 | [diff] [blame] | 12 | |
Hou Zhiqiang | c37fdbd | 2016-08-02 19:03:24 +0800 | [diff] [blame] | 13 | void set_devices_ns_access(struct csu_ns_dev *ns_dev, u16 val) |
Xiubo Li | e87f3b3 | 2014-11-21 17:40:58 +0800 | [diff] [blame] | 14 | { |
| 15 | u32 *base = (u32 *)CONFIG_SYS_FSL_CSU_ADDR; |
| 16 | u32 *reg; |
Hou Zhiqiang | c37fdbd | 2016-08-02 19:03:24 +0800 | [diff] [blame] | 17 | uint32_t tmp; |
| 18 | |
| 19 | reg = base + ns_dev->ind / 2; |
| 20 | tmp = in_be32(reg); |
| 21 | if (ns_dev->ind % 2 == 0) { |
| 22 | tmp &= 0x0000ffff; |
| 23 | tmp |= val << 16; |
| 24 | } else { |
| 25 | tmp &= 0xffff0000; |
| 26 | tmp |= val; |
| 27 | } |
| 28 | |
| 29 | out_be32(reg, tmp); |
| 30 | } |
| 31 | |
| 32 | static void enable_devices_ns_access(struct csu_ns_dev *ns_dev, uint32_t num) |
| 33 | { |
Xiubo Li | e87f3b3 | 2014-11-21 17:40:58 +0800 | [diff] [blame] | 34 | int i; |
| 35 | |
Hou Zhiqiang | c37fdbd | 2016-08-02 19:03:24 +0800 | [diff] [blame] | 36 | for (i = 0; i < num; i++) |
| 37 | set_devices_ns_access(ns_dev + i, ns_dev[i].val); |
Xiubo Li | e87f3b3 | 2014-11-21 17:40:58 +0800 | [diff] [blame] | 38 | } |
Mingkai Hu | 435acd8 | 2015-10-26 19:47:41 +0800 | [diff] [blame] | 39 | |
| 40 | void enable_layerscape_ns_access(void) |
| 41 | { |
| 42 | enable_devices_ns_access(ns_dev, ARRAY_SIZE(ns_dev)); |
| 43 | } |
Hou Zhiqiang | 664b652 | 2016-08-02 19:03:26 +0800 | [diff] [blame] | 44 | |
| 45 | void set_pcie_ns_access(int pcie, u16 val) |
| 46 | { |
| 47 | switch (pcie) { |
| 48 | #ifdef CONFIG_PCIE1 |
| 49 | case PCIE1: |
| 50 | set_devices_ns_access(&ns_dev[CSU_CSLX_PCIE1], val); |
| 51 | set_devices_ns_access(&ns_dev[CSU_CSLX_PCIE1_IO], val); |
| 52 | return; |
| 53 | #endif |
| 54 | #ifdef CONFIG_PCIE2 |
| 55 | case PCIE2: |
| 56 | set_devices_ns_access(&ns_dev[CSU_CSLX_PCIE2], val); |
| 57 | set_devices_ns_access(&ns_dev[CSU_CSLX_PCIE2_IO], val); |
| 58 | return; |
| 59 | #endif |
| 60 | #ifdef CONFIG_PCIE3 |
| 61 | case PCIE3: |
| 62 | set_devices_ns_access(&ns_dev[CSU_CSLX_PCIE3], val); |
| 63 | set_devices_ns_access(&ns_dev[CSU_CSLX_PCIE3_IO], val); |
| 64 | return; |
| 65 | #endif |
| 66 | default: |
| 67 | debug("The PCIE%d doesn't exist!\n", pcie); |
| 68 | return; |
| 69 | } |
| 70 | } |