mirror of https://github.com/torvalds/linux.git
24 lines
551 B
C
24 lines
551 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* RZ/G3S System controller driver
|
|
*
|
|
* Copyright (C) 2024 Renesas Electronics Corp.
|
|
*/
|
|
|
|
#include <linux/bits.h>
|
|
#include <linux/init.h>
|
|
|
|
#include "rz-sysc.h"
|
|
|
|
static const struct rz_sysc_soc_id_init_data rzg3s_sysc_soc_id_init_data __initconst = {
|
|
.family = "RZ/G3S",
|
|
.id = 0x85e0447,
|
|
.devid_offset = 0xa04,
|
|
.revision_mask = GENMASK(31, 28),
|
|
.specific_id_mask = GENMASK(27, 0),
|
|
};
|
|
|
|
const struct rz_sysc_init_data rzg3s_sysc_init_data __initconst = {
|
|
.soc_id_init_data = &rzg3s_sysc_soc_id_init_data,
|
|
};
|