forked from Qortal/Brooklyn
a94b3d14aa
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
20 lines
460 B
C
20 lines
460 B
C
/* SPDX-License-Identifier: (GPL-2.0+ or MIT) */
|
|
/*
|
|
* Copyright (c) 2021 Amlogic, Inc.
|
|
* Author: Shunzhou Jiang <shunzhou.jiang@amlogic.com>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_MESON_S4_POWER_H
|
|
#define _DT_BINDINGS_MESON_S4_POWER_H
|
|
|
|
#define PWRC_S4_DOS_HEVC_ID 0
|
|
#define PWRC_S4_DOS_VDEC_ID 1
|
|
#define PWRC_S4_VPU_HDMI_ID 2
|
|
#define PWRC_S4_USB_COMB_ID 3
|
|
#define PWRC_S4_GE2D_ID 4
|
|
#define PWRC_S4_ETH_ID 5
|
|
#define PWRC_S4_DEMOD_ID 6
|
|
#define PWRC_S4_AUDIO_ID 7
|
|
|
|
#endif
|