diff options
author | Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com> | 2022-02-08 16:36:31 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-02-09 08:04:43 +0100 |
commit | a85e4c52086cd8da6399447a92bf0250d8e634c2 (patch) | |
tree | e9aa3764b398d64e3f57746038ce9cf3b9c8bbe5 /drivers/peci/Makefile | |
parent | peci: Add core infrastructure (diff) | |
download | linux-a85e4c52086cd8da6399447a92bf0250d8e634c2.tar.xz linux-a85e4c52086cd8da6399447a92bf0250d8e634c2.zip |
peci: Add peci-aspeed controller driver
ASPEED AST24xx/AST25xx/AST26xx SoCs support the PECI electrical
interface (a.k.a PECI wire) that provides a communication channel with
Intel processors.
This driver allows BMC to discover devices connected to it and
communicate with them using PECI protocol.
Co-developed-by: Iwona Winiarska <iwona.winiarska@intel.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Acked-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
Signed-off-by: Iwona Winiarska <iwona.winiarska@intel.com>
Link: https://lore.kernel.org/r/20220208153639.255278-6-iwona.winiarska@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/peci/Makefile')
-rw-r--r-- | drivers/peci/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/peci/Makefile b/drivers/peci/Makefile index e789a354e842..926d8df15cbd 100644 --- a/drivers/peci/Makefile +++ b/drivers/peci/Makefile @@ -3,3 +3,6 @@ # Core functionality peci-y := core.o obj-$(CONFIG_PECI) += peci.o + +# Hardware specific bus drivers +obj-y += controller/ |