soc/intel/apollolake: Provide No Connect macro for unused Pad
Change-Id: Iba506054a3d631c8e538d44e1ca6877dd02c2ca9 Signed-off-by: Jagadish Krishnamoorthy <jagadish.krishnamoorthy@intel.com> Reviewed-on: https://review.coreboot.org/14956 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
842dfe8d63
commit
a9ac2d9b91
|
@ -54,6 +54,11 @@ typedef uint32_t gpio_t;
|
||||||
PAD_FUNC(GPIO) | PAD_RESET(rst) | PAD_CFG0_TX_DISABLE, \
|
PAD_FUNC(GPIO) | PAD_RESET(rst) | PAD_CFG0_TX_DISABLE, \
|
||||||
PAD_PULL(pull))
|
PAD_PULL(pull))
|
||||||
|
|
||||||
|
/* No Connect configuration for unused pad.
|
||||||
|
* NC should be GPI with Term as PU20K, PD20K, NONE depending upon default Term
|
||||||
|
*/
|
||||||
|
#define PAD_NC(pad, pull) PAD_CFG_GPI(pad, pull, DEEP)
|
||||||
|
|
||||||
/* General purpose input, routed to APIC */
|
/* General purpose input, routed to APIC */
|
||||||
#define PAD_CFG_GPI_APIC(pad, pull, rst, trig, inv) \
|
#define PAD_CFG_GPI_APIC(pad, pull, rst, trig, inv) \
|
||||||
_PAD_CFG_STRUCT(pad, \
|
_PAD_CFG_STRUCT(pad, \
|
||||||
|
|
Loading…
Reference in New Issue