mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

Add SoC identification for the RZ/V2N SoC using the System Controller (SYS) block. Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/20250415085438.83856-1-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
48 lines
1.3 KiB
C
48 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Renesas RZ System Controller
|
|
*
|
|
* Copyright (C) 2024 Renesas Electronics Corp.
|
|
*/
|
|
|
|
#ifndef __SOC_RENESAS_RZ_SYSC_H__
|
|
#define __SOC_RENESAS_RZ_SYSC_H__
|
|
|
|
#include <linux/device.h>
|
|
#include <linux/sys_soc.h>
|
|
#include <linux/types.h>
|
|
|
|
/**
|
|
* struct rz_syc_soc_id_init_data - RZ SYSC SoC identification initialization data
|
|
* @family: RZ SoC family
|
|
* @id: RZ SoC expected ID
|
|
* @devid_offset: SYSC SoC ID register offset
|
|
* @revision_mask: SYSC SoC ID revision mask
|
|
* @specific_id_mask: SYSC SoC ID specific ID mask
|
|
* @print_id: print SoC-specific extended device identification
|
|
*/
|
|
struct rz_sysc_soc_id_init_data {
|
|
const char * const family;
|
|
u32 id;
|
|
u32 devid_offset;
|
|
u32 revision_mask;
|
|
u32 specific_id_mask;
|
|
void (*print_id)(struct device *dev, void __iomem *sysc_base,
|
|
struct soc_device_attribute *soc_dev_attr);
|
|
};
|
|
|
|
/**
|
|
* struct rz_sysc_init_data - RZ SYSC initialization data
|
|
* @soc_id_init_data: RZ SYSC SoC ID initialization data
|
|
*/
|
|
struct rz_sysc_init_data {
|
|
const struct rz_sysc_soc_id_init_data *soc_id_init_data;
|
|
};
|
|
|
|
extern const struct rz_sysc_init_data rzg3e_sys_init_data;
|
|
extern const struct rz_sysc_init_data rzg3s_sysc_init_data;
|
|
extern const struct rz_sysc_init_data rzv2h_sys_init_data;
|
|
extern const struct rz_sysc_init_data rzv2n_sys_init_data;
|
|
|
|
#endif /* __SOC_RENESAS_RZ_SYSC_H__ */
|