diff options
Diffstat (limited to 'src/soc/qualcomm/sc7280')
-rw-r--r-- | src/soc/qualcomm/sc7280/Makefile.inc | 1 | ||||
-rw-r--r-- | src/soc/qualcomm/sc7280/include/soc/uart.h | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7280/Makefile.inc b/src/soc/qualcomm/sc7280/Makefile.inc index abcc3fb175..3c34be010c 100644 --- a/src/soc/qualcomm/sc7280/Makefile.inc +++ b/src/soc/qualcomm/sc7280/Makefile.inc @@ -7,6 +7,7 @@ all-y += ../common/gpio.c ################################################################################ bootblock-y += bootblock.c bootblock-y += mmu.c +bootblock-$(CONFIG_DRIVERS_UART) += ../common/uart_bitbang.c ################################################################################ romstage-y += cbmem.c diff --git a/src/soc/qualcomm/sc7280/include/soc/uart.h b/src/soc/qualcomm/sc7280/include/soc/uart.h new file mode 100644 index 0000000000..2b2f2809d4 --- /dev/null +++ b/src/soc/qualcomm/sc7280/include/soc/uart.h @@ -0,0 +1,8 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + +#ifndef _SOC_QUALCOMM_SC7280_UART_TX_H_ +#define _SOC_QUALCOMM_SC7280_UART_TX_H_ + +#define UART_TX_PIN GPIO(22) + +#endif /* _SOC_QUALCOMM_SC7280_UART_TX_H_ */ |