mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
28eefefccf
Add a driver for the Apollo Lake SoC. It supports the basic operations and can use device tree or of-platdata. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
19 lines
419 B
C
19 lines
419 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2015-2016 Intel Corp.
|
|
* (Written by Lance Zhao <lijian.zhao@intel.com> for Intel Corp.)
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_PM_H
|
|
#define _ASM_ARCH_PM_H
|
|
|
|
#define PMC_GPE_SW_31_0 0
|
|
#define PMC_GPE_SW_63_32 1
|
|
#define PMC_GPE_NW_31_0 3
|
|
#define PMC_GPE_NW_63_32 4
|
|
#define PMC_GPE_NW_95_64 5
|
|
#define PMC_GPE_N_31_0 6
|
|
#define PMC_GPE_N_63_32 7
|
|
#define PMC_GPE_W_31_0 9
|
|
|
|
#endif
|