blob: 78869a253d1f604427ae70101ea78261bba99f54 [file] [log] [blame]
Prafulla Wadaskar1fd6a9b2009-05-30 01:13:33 +05301/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 *
6 * Derived from drivers/spi/mpc8xxx_spi.c
7 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02008 * SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar1fd6a9b2009-05-30 01:13:33 +05309 */
10
11#ifndef __KW_SPI_H__
12#define __KW_SPI_H__
13
14/* SPI Registers on kirkwood SOC */
15struct kwspi_registers {
16 u32 ctrl; /* 0x10600 */
17 u32 cfg; /* 0x10604 */
18 u32 dout; /* 0x10608 */
19 u32 din; /* 0x1060c */
20 u32 irq_cause; /* 0x10610 */
21 u32 irq_mask; /* 0x10614 */
Stefan Roese20d1d662016-02-12 13:52:17 +010022 u32 timing1; /* 0x10618 */
23 u32 timing2; /* 0x1061c */
24 u32 dw_cfg; /* 0x10620 - Direct Write Configuration */
Prafulla Wadaskar1fd6a9b2009-05-30 01:13:33 +053025};
26
Valentin Longchampdb22ce72012-06-01 01:31:02 +000027/* They are used to define CONFIG_SYS_KW_SPI_MPP
28 * each of the below #defines selects which mpp is
29 * configured for each SPI signal in spi_claim_bus
30 * bit 0: selects pin for MOSI (MPP1 if 0, MPP6 if 1)
31 * bit 1: selects pin for SCK (MPP2 if 0, MPP10 if 1)
32 * bit 2: selects pin for MISO (MPP3 if 0, MPP11 if 1)
33 */
34#define MOSI_MPP6 (1 << 0)
35#define SCK_MPP10 (1 << 1)
36#define MISO_MPP11 (1 << 2)
37
Stefan Roese90b499a2016-02-11 11:37:38 +010038/* Control Register */
39#define KWSPI_CSN_ACT (1 << 0) /* Activates serial memory interface */
40#define KWSPI_SMEMRDY (1 << 1) /* SerMem Data xfer ready */
41#define KWSPI_CS_SHIFT 2 /* chip select shift */
42#define KWSPI_CS_MASK 0x7 /* chip select mask */
43
44/* Configuration Register */
Prafulla Wadaskar1fd6a9b2009-05-30 01:13:33 +053045#define KWSPI_CLKPRESCL_MASK 0x1f
Valentin Longchampbaddd9f2012-08-15 05:31:49 +000046#define KWSPI_CLKPRESCL_MIN 0x12
Prafulla Wadaskar1fd6a9b2009-05-30 01:13:33 +053047#define KWSPI_XFERLEN_1BYTE 0
48#define KWSPI_XFERLEN_2BYTE (1 << 5)
49#define KWSPI_XFERLEN_MASK (1 << 5)
50#define KWSPI_ADRLEN_1BYTE 0
Stefan Roese4c653e42014-09-02 14:02:50 +020051#define KWSPI_ADRLEN_2BYTE (1 << 8)
52#define KWSPI_ADRLEN_3BYTE (2 << 8)
53#define KWSPI_ADRLEN_4BYTE (3 << 8)
54#define KWSPI_ADRLEN_MASK (3 << 8)
Stefan Roese90b499a2016-02-11 11:37:38 +010055
56#define KWSPI_IRQUNMASK 1 /* unmask SPI interrupt */
57#define KWSPI_IRQMASK 0 /* mask SPI interrupt */
58#define KWSPI_SMEMRDIRQ 1 /* SerMem data xfer ready irq */
59
Prafulla Wadaskar1fd6a9b2009-05-30 01:13:33 +053060#define KWSPI_TIMEOUT 10000
61
62#endif /* __KW_SPI_H__ */