summaryrefslogtreecommitdiff
path: root/src/soc/mediatek/mt8186/include
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.corp-partner.google.com>2021-11-04 13:56:56 +0800
committerPatrick Georgi <pgeorgi@google.com>2021-11-05 12:59:42 +0000
commit0d50892e841d751bfcb20fdd56adde4f1b244a26 (patch)
tree48a8bb6eaf49552d32765525322e65584420d6f5 /src/soc/mediatek/mt8186/include
parent3aa61136cc2225087626191a1b67d8bf2470e1dd (diff)
soc/mediatek/mt8186: add NOR-Flash GPIO setting in soc folder
The NOR-Flash can be configured on SPI0 or TDM-RX GPIOs so we have to provide an init function in SoC for the mainboard to select right configuration. TEST=boot to romstage BUG=b:202871018 Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com> Change-Id: I285ec64ace8b72a48ef1d481d366bd67cb9b0337 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58935 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/soc/mediatek/mt8186/include')
-rw-r--r--src/soc/mediatek/mt8186/include/soc/spi.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/soc/mediatek/mt8186/include/soc/spi.h b/src/soc/mediatek/mt8186/include/soc/spi.h
index cf64660837..fbf3995b7a 100644
--- a/src/soc/mediatek/mt8186/include/soc/spi.h
+++ b/src/soc/mediatek/mt8186/include/soc/spi.h
@@ -10,4 +10,12 @@
#include <spi-generic.h>
+enum {
+ SPI_NOR_GPIO_SET0 = 0,
+ SPI_NOR_GPIO_SET1,
+ SPI_NOR_GPIO_SET_NUM,
+};
+
+void mtk_snfc_init(int gpio_set);
+
#endif