diff options
author | Simon Glass <sjg@chromium.org> | 2019-12-06 21:41:53 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-12-15 11:44:10 +0800 |
commit | 6c6d88e142e8714ed88d051c524036ff17278390 (patch) | |
tree | 9c7924b91b18a043199a844a055922265607f0c6 /include/dm/uclass-id.h | |
parent | 76ab9f272610c7454f41e5fa059fe425c6b81292 (diff) | |
download | u-boot-6c6d88e142e8714ed88d051c524036ff17278390.tar.gz u-boot-6c6d88e142e8714ed88d051c524036ff17278390.tar.xz u-boot-6c6d88e142e8714ed88d051c524036ff17278390.zip |
x86: power: Add an ACPI PMC uclass
Intel x86 SoCs have a power manager/controller which handles several
power-related aspects of the platform. Add a uclass for this, with a few
useful operations.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/dm/uclass-id.h')
-rw-r--r-- | include/dm/uclass-id.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h index 0c563d898b..8431ad9c44 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -28,6 +28,7 @@ enum uclass_id { UCLASS_AXI_EMUL, /* sandbox AXI bus device emulator */ /* U-Boot uclasses start here - in alphabetical order */ + UCLASS_ACPI_PMC, /* (x86) Power-management controller (PMC) */ UCLASS_ADC, /* Analog-to-digital converter */ UCLASS_AHCI, /* SATA disk controller */ UCLASS_AUDIO_CODEC, /* Audio codec with control and data path */ |