.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
---|
1 | 2 | /* |
---|
2 | 3 | * SMP support for J2 processor |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2015-2016 Smart Energy Instruments, Inc. |
---|
5 | | - * |
---|
6 | | - * This file is subject to the terms and conditions of the GNU General Public |
---|
7 | | - * License. See the file "COPYING" in the main directory of this archive |
---|
8 | | - * for more details. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #include <linux/smp.h> |
---|
.. | .. |
---|
91 | 88 | if (!np) return; |
---|
92 | 89 | |
---|
93 | 90 | if (of_property_read_u32_array(np, "cpu-release-addr", regs, 2)) return; |
---|
94 | | - release = ioremap_nocache(regs[0], sizeof(u32)); |
---|
95 | | - initpc = ioremap_nocache(regs[1], sizeof(u32)); |
---|
| 91 | + release = ioremap(regs[0], sizeof(u32)); |
---|
| 92 | + initpc = ioremap(regs[1], sizeof(u32)); |
---|
96 | 93 | |
---|
97 | 94 | __raw_writel(entry_point, initpc); |
---|
98 | 95 | __raw_writel(1, release); |
---|