diff options
| author | Mike Baiocchi <mbaiocch@us.ibm.com> | 2019-09-12 11:12:10 -0500 |
|---|---|---|
| committer | Nicholas E Bofferding <bofferdn@us.ibm.com> | 2019-11-14 08:27:53 -0600 |
| commit | eace166aa1ef265712798d84f10782f7bc430be7 (patch) | |
| tree | 10678b057c02cfe810662f1af04370c3fb1293cd /src/usr/gpio/makefile | |
| parent | 0247cc5fbda6733f8006e8cda36abb153f0c0227 (diff) | |
| download | talos-hostboot-eace166aa1ef265712798d84f10782f7bc430be7.tar.gz talos-hostboot-eace166aa1ef265712798d84f10782f7bc430be7.zip | |
Support GPIO Physical Presence Detect Devices
This commit makes the necessary changes to support the GPIO devices
used for physical presence detection:
- New attribute GPIO_INFO_PHYS_PRES
- Enable GPIO Device Driver by default
- GPIO Device Driver updated to support new device type
- Added new GPIO PCA9551 layer to sit on top of GPIO Device Driver
Change-Id: I952007503eb5d9fe873adea2eaaeccff21ae18a6
RTC:211220
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/84655
Reviewed-by: Ilya Smirnov <ismirno@us.ibm.com>
Reviewed-by: Christopher J Engel <cjengel@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Nicholas E Bofferding <bofferdn@us.ibm.com>
Diffstat (limited to 'src/usr/gpio/makefile')
| -rw-r--r-- | src/usr/gpio/makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/usr/gpio/makefile b/src/usr/gpio/makefile index d40eaa130..fd42e2d1d 100644 --- a/src/usr/gpio/makefile +++ b/src/usr/gpio/makefile @@ -5,7 +5,7 @@ # # OpenPOWER HostBoot Project # -# Contributors Listed Below - COPYRIGHT 2014 +# Contributors Listed Below - COPYRIGHT 2014,2019 # [+] Google Inc. # [+] International Business Machines Corp. # @@ -27,6 +27,8 @@ ROOTPATH = ../../.. MODULE = gpio OBJS += $(if $(CONFIG_GPIODD),gpiodd.o,) +OBJS += $(if $(CONFIG_GPIODD),gpio_pca9551.o,) + # no way to test this at the moment TODO RTC 111415 #SUBDIRS = test.d |

