.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
---|
1 | 2 | /* |
---|
2 | 3 | * Renesas R-Car V3M System Controller |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2017 Cogent Embedded Inc. |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify |
---|
7 | | - * it under the terms of the GNU General Public License version 2 as |
---|
8 | | - * published by the Free Software Foundation. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | | -#include <linux/bug.h> |
---|
| 8 | +#include <linux/bits.h> |
---|
12 | 9 | #include <linux/kernel.h> |
---|
13 | 10 | |
---|
14 | 11 | #include <dt-bindings/power/r8a77970-sysc.h> |
---|
.. | .. |
---|
23 | 20 | PD_CPU_NOCR }, |
---|
24 | 21 | { "ca53-cpu1", 0x200, 1, R8A77970_PD_CA53_CPU1, R8A77970_PD_CA53_SCU, |
---|
25 | 22 | PD_CPU_NOCR }, |
---|
26 | | - { "cr7", 0x240, 0, R8A77970_PD_CR7, R8A77970_PD_ALWAYS_ON }, |
---|
27 | 23 | { "a3ir", 0x180, 0, R8A77970_PD_A3IR, R8A77970_PD_ALWAYS_ON }, |
---|
28 | 24 | { "a2ir0", 0x400, 0, R8A77970_PD_A2IR0, R8A77970_PD_A3IR }, |
---|
29 | 25 | { "a2ir1", 0x400, 1, R8A77970_PD_A2IR1, R8A77970_PD_A3IR }, |
---|
.. | .. |
---|
36 | 32 | const struct rcar_sysc_info r8a77970_sysc_info __initconst = { |
---|
37 | 33 | .areas = r8a77970_areas, |
---|
38 | 34 | .num_areas = ARRAY_SIZE(r8a77970_areas), |
---|
| 35 | + .extmask_offs = 0x1b0, |
---|
| 36 | + .extmask_val = BIT(0), |
---|
39 | 37 | }; |
---|