diff options
author | Felipe Balbi <felipe.balbi@linux.intel.com> | 2017-04-01 16:21:33 +0300 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-04-10 10:02:03 +0800 |
commit | bb416465fde8393bcbf1f64847b5e3cb021d5c81 (patch) | |
tree | 51717bb0789c1652a89b5588e63cbecc9003e381 /arch/x86/include/asm/cpu.h | |
parent | c5f8dd482b4178cda30be7355085a70521cd4813 (diff) | |
download | u-boot-bb416465fde8393bcbf1f64847b5e3cb021d5c81.tar.gz |
x86: Add SCU IPC driver for Intel MID platforms
Intel MID platforms have few microcontrollers inside SoC, one of them
is so called System Controller Unit (SCU).
Here is the driver to communicate with microcontroller.
Signed-off-by: Vincent Tinelli <vincent.tinelli@intel.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/include/asm/cpu.h')
-rw-r--r-- | arch/x86/include/asm/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/include/asm/cpu.h b/arch/x86/include/asm/cpu.h index c651f2f594..0ee13b1eb1 100644 --- a/arch/x86/include/asm/cpu.h +++ b/arch/x86/include/asm/cpu.h @@ -54,6 +54,7 @@ enum { X86_NONE, X86_SYSCON_ME, /* Intel Management Engine */ X86_SYSCON_PINCONF, /* Intel x86 pin configuration */ + X86_SYSCON_SCU, /* System Controller Unit */ }; struct cpuid_result { |