All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] sunxi: SPI: reset bus when enabling clock
@ 2018-08-03 23:24 Fahad Sadah
  2018-08-03 23:24 ` [U-Boot] [PATCH 1/2] sunxi: SPI: add AHB gate and reset offsets Fahad Sadah
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fahad Sadah @ 2018-08-03 23:24 UTC (permalink / raw)
  To: u-boot

Hi all,

The sun6i SPI peripheral needs to be reset before it can be used

Add the necessary offset #defines and perform this reset

Tested on Orange Pi R1 (Allwinner H2+ / sun8i) and successfully booted
from SPI

Thanks,

Signed-off-by: Fahad Sadah <fahad@sadah.uk>

Fahad Sadah (2):
  sunxi: SPI: add AHB gate and reset offsets
  sunxi: SPI: reset bus when enabling clock

 arch/arm/include/asm/arch-sunxi/clock_sun6i.h | 4 ++++
 drivers/spi/sun6i_spi.c                       | 1 +
 2 files changed, 5 insertions(+)

-- 
2.14.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 1/2] sunxi: SPI: add AHB gate and reset offsets
  2018-08-03 23:24 [U-Boot] [PATCH 0/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
@ 2018-08-03 23:24 ` Fahad Sadah
  2018-08-03 23:24 ` [U-Boot] [PATCH 2/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
  2018-08-06 17:54 ` [U-Boot] [PATCH 0/2] " Jagan Teki
  2 siblings, 0 replies; 5+ messages in thread
From: Fahad Sadah @ 2018-08-03 23:24 UTC (permalink / raw)
  To: u-boot

---
 arch/arm/include/asm/arch-sunxi/clock_sun6i.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/arch/arm/include/asm/arch-sunxi/clock_sun6i.h b/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
index d328df9597..71a1673fa8 100644
--- a/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
+++ b/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
@@ -290,6 +290,8 @@ struct sunxi_ccm_reg {
 #define AHB_GATE_OFFSET_USB0		25
 #define AHB_GATE_OFFSET_SATA		24
 #endif
+#define AHB_GATE_OFFSET_SPI1		21
+#define AHB_GATE_OFFSET_SPI0		20
 #define AHB_GATE_OFFSET_MCTL		14
 #define AHB_GATE_OFFSET_GMAC		17
 #define AHB_GATE_OFFSET_NAND0		13
@@ -436,6 +438,8 @@ struct sunxi_ccm_reg {
 #ifdef CONFIG_MACH_SUN8I_R40
 #define AHB_RESET_OFFSET_SATA		24
 #endif
+#define AHB_RESET_OFFSET_SPI1		21
+#define AHB_RESET_OFFSET_SPI0		20
 #define AHB_RESET_OFFSET_GMAC		17
 #define AHB_RESET_OFFSET_MCTL		14
 #define AHB_RESET_OFFSET_MMC3		11
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/2] sunxi: SPI: reset bus when enabling clock
  2018-08-03 23:24 [U-Boot] [PATCH 0/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
  2018-08-03 23:24 ` [U-Boot] [PATCH 1/2] sunxi: SPI: add AHB gate and reset offsets Fahad Sadah
@ 2018-08-03 23:24 ` Fahad Sadah
  2018-08-06 17:54 ` [U-Boot] [PATCH 0/2] " Jagan Teki
  2 siblings, 0 replies; 5+ messages in thread
From: Fahad Sadah @ 2018-08-03 23:24 UTC (permalink / raw)
  To: u-boot

---
 drivers/spi/sun6i_spi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/sun6i_spi.c b/drivers/spi/sun6i_spi.c
index 3192548e83..3c6a13e40e 100644
--- a/drivers/spi/sun6i_spi.c
+++ b/drivers/spi/sun6i_spi.c
@@ -215,6 +215,7 @@ static inline void sun6i_spi_enable_clock(void)
 	struct sunxi_ccm_reg *const ccm =
 		(struct sunxi_ccm_reg *const)SUNXI_CCM_BASE;
 
+	setbits_le32(&ccm->ahb_reset0_cfg, (1 << AHB_RESET_OFFSET_SPI0));
 	setbits_le32(&ccm->ahb_gate0, (1 << AHB_GATE_OFFSET_SPI0));
 	writel((1 << 31), &ccm->spi0_clk_cfg);
 }
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 0/2] sunxi: SPI: reset bus when enabling clock
  2018-08-03 23:24 [U-Boot] [PATCH 0/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
  2018-08-03 23:24 ` [U-Boot] [PATCH 1/2] sunxi: SPI: add AHB gate and reset offsets Fahad Sadah
  2018-08-03 23:24 ` [U-Boot] [PATCH 2/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
@ 2018-08-06 17:54 ` Jagan Teki
  2 siblings, 0 replies; 5+ messages in thread
From: Jagan Teki @ 2018-08-06 17:54 UTC (permalink / raw)
  To: u-boot

On Sat, Aug 4, 2018 at 4:54 AM, Fahad Sadah <fahad@sadah.uk> wrote:
> Hi all,
>
> The sun6i SPI peripheral needs to be reset before it can be used
>
> Add the necessary offset #defines and perform this reset
>
> Tested on Orange Pi R1 (Allwinner H2+ / sun8i) and successfully booted
> from SPI

Thanks for testing this.

We are now moving to CLK, RST instead of ccm hacks, please test
u-boot-sunxi/clk it has necessary changes. Let me know for any inputs.

Jagan.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH 2/2] sunxi: SPI: reset bus when enabling clock
  2018-08-04 12:23 [U-Boot] " Fahad Sadah
@ 2018-08-04 12:23 ` Fahad Sadah
  0 siblings, 0 replies; 5+ messages in thread
From: Fahad Sadah @ 2018-08-04 12:23 UTC (permalink / raw)
  To: u-boot

---
 drivers/spi/sun6i_spi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/spi/sun6i_spi.c b/drivers/spi/sun6i_spi.c
index 3192548e83..3c6a13e40e 100644
--- a/drivers/spi/sun6i_spi.c
+++ b/drivers/spi/sun6i_spi.c
@@ -215,6 +215,7 @@ static inline void sun6i_spi_enable_clock(void)
 	struct sunxi_ccm_reg *const ccm =
 		(struct sunxi_ccm_reg *const)SUNXI_CCM_BASE;
 
+	setbits_le32(&ccm->ahb_reset0_cfg, (1 << AHB_RESET_OFFSET_SPI0));
 	setbits_le32(&ccm->ahb_gate0, (1 << AHB_GATE_OFFSET_SPI0));
 	writel((1 << 31), &ccm->spi0_clk_cfg);
 }
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-08-06 17:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-03 23:24 [U-Boot] [PATCH 0/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
2018-08-03 23:24 ` [U-Boot] [PATCH 1/2] sunxi: SPI: add AHB gate and reset offsets Fahad Sadah
2018-08-03 23:24 ` [U-Boot] [PATCH 2/2] sunxi: SPI: reset bus when enabling clock Fahad Sadah
2018-08-06 17:54 ` [U-Boot] [PATCH 0/2] " Jagan Teki
2018-08-04 12:23 [U-Boot] " Fahad Sadah
2018-08-04 12:23 ` [U-Boot] [PATCH 2/2] " Fahad Sadah

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.