From dccff14efea4631d138ecee52b6159225d13d3dd Mon Sep 17 00:00:00 2001 From: Piotr Dymacz Date: Mon, 14 Dec 2015 13:07:50 +0100 Subject: [PATCH] Add some missing field defines in SPI FLASH related register --- u-boot/include/soc/qca_soc_common.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/u-boot/include/soc/qca_soc_common.h b/u-boot/include/soc/qca_soc_common.h index 233c7a7..07afd29 100644 --- a/u-boot/include/soc/qca_soc_common.h +++ b/u-boot/include/soc/qca_soc_common.h @@ -1236,6 +1236,10 @@ #define QCA_SPI_CTRL_CLK_DIV_MASK BITS(QCA_SPI_CTRL_CLK_DIV_SHIFT, 6) #define QCA_SPI_CTRL_REMAP_DIS_SHIFT 6 #define QCA_SPI_CTRL_REMAP_DIS_MASK (1 << QCA_SPI_CTRL_REMAP_DIS_SHIFT) +#define QCA_SPI_CTRL_SPI_RELOCATE_SHIFT 7 +#define QCA_SPI_CTRL_SPI_RELOCATE_MASK (1 << QCA_SPI_CTRL_SPI_RELOCATE_SHIFT) +#define QCA_SPI_CTRL_TSHSL_CNT_SHIFT 8 +#define QCA_SPI_CTRL_TSHSL_CNT_MASK BITS(QCA_SPI_CTRL_TSHSL_CNT_SHIFT, 6) /* SPI_IO_CONTROL register (SPI I/O control) */ #define QCA_SPI_IO_CTRL_IO_DO_SHIFT 0 -- 2.25.1