xref: /kernel/linux/linux-5.10/drivers/soc/renesas/r8a77995-sysc.c (revision 8c2ecf20)
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /kernel/linux/linux-5.10/drivers/soc/renesas/
18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Renesas R-Car D3 System Controller
48c2ecf20Sopenharmony_ci *
58c2ecf20Sopenharmony_ci * Copyright (C) 2017 Glider bvba
68c2ecf20Sopenharmony_ci */
78c2ecf20Sopenharmony_ci
88c2ecf20Sopenharmony_ci#include <linux/kernel.h>
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci#include <dt-bindings/power/r8a77995-sysc.h>
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#include "rcar-sysc.h"
138c2ecf20Sopenharmony_ci
148c2ecf20Sopenharmony_cistatic const struct rcar_sysc_area r8a77995_areas[] __initconst = {
158c2ecf20Sopenharmony_ci	{ "always-on",     0, 0, R8A77995_PD_ALWAYS_ON, -1, PD_ALWAYS_ON },
168c2ecf20Sopenharmony_ci	{ "ca53-scu",  0x140, 0, R8A77995_PD_CA53_SCU,  R8A77995_PD_ALWAYS_ON,
178c2ecf20Sopenharmony_ci	  PD_SCU },
188c2ecf20Sopenharmony_ci	{ "ca53-cpu0", 0x200, 0, R8A77995_PD_CA53_CPU0, R8A77995_PD_CA53_SCU,
198c2ecf20Sopenharmony_ci	  PD_CPU_NOCR },
208c2ecf20Sopenharmony_ci};
218c2ecf20Sopenharmony_ci
228c2ecf20Sopenharmony_ci
238c2ecf20Sopenharmony_ciconst struct rcar_sysc_info r8a77995_sysc_info __initconst = {
248c2ecf20Sopenharmony_ci	.areas = r8a77995_areas,
258c2ecf20Sopenharmony_ci	.num_areas = ARRAY_SIZE(r8a77995_areas),
268c2ecf20Sopenharmony_ci};
27

Indexes created Thu Nov 07 10:32:03 CST 2024