mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 23:46:45 +00:00

The A523 PPU is likely the same kind of hardware seen on previous SoCs. The A523 PCK600, as the name suggests, is likely a customized version of ARM's PCK-600 power controller. Comparing the BSP driver against ARM's PPU datasheet shows that the basic registers line up, but Allwinner's hardware has some additional delay controls in the reserved register range. As such it is likely not fully compatible with the standard ARM version. Document A523 PPU and PCK600 compatibles. Also reorder the compatible string entries so they are grouped and ordered by family first, then by SoC model. Reviewed-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Rob Herring (Arm) <robh@kernel.org> Signed-off-by: Chen-Yu Tsai <wens@csie.org> Link: https://lore.kernel.org/r/20250712074021.805953-2-wens@kernel.org Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
16 lines
368 B
C
16 lines
368 B
C
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
|
|
|
|
#ifndef _DT_BINDINGS_POWER_SUN55I_A523_PCK600_H_
|
|
#define _DT_BINDINGS_POWER_SUN55I_A523_PCK600_H_
|
|
|
|
#define PD_VE 0
|
|
#define PD_GPU 1
|
|
#define PD_VI 2
|
|
#define PD_VO0 3
|
|
#define PD_VO1 4
|
|
#define PD_DE 5
|
|
#define PD_NAND 6
|
|
#define PD_PCIE 7
|
|
|
|
#endif /* _DT_BINDINGS_POWER_SUN55I_A523_PCK600_H_ */
|