xref: /openbmc/linux/arch/sh/include/mach-sdk7786/mach/fpga.h (revision 498495dba268b20e8eadd7fe93c140c68b6cc9d2)
1*b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2efd590d5SPaul Mundt #ifndef __MACH_SDK7786_FPGA_H
3efd590d5SPaul Mundt #define __MACH_SDK7786_FPGA_H
4efd590d5SPaul Mundt 
5efd590d5SPaul Mundt #include <linux/io.h>
6efd590d5SPaul Mundt #include <linux/types.h>
7efd590d5SPaul Mundt #include <linux/bitops.h>
8efd590d5SPaul Mundt 
9efd590d5SPaul Mundt #define SRSTR		0x000
10d9116d07SPaul Mundt #define  SRSTR_MAGIC	0x1971	/* Fixed magical read value */
11d9116d07SPaul Mundt 
12efd590d5SPaul Mundt #define INTASR		0x010
13efd590d5SPaul Mundt #define INTAMR		0x020
14efd590d5SPaul Mundt #define MODSWR		0x030
15efd590d5SPaul Mundt #define INTTESTR	0x040
16efd590d5SPaul Mundt #define SYSSR		0x050
17efd590d5SPaul Mundt #define NRGPR		0x060
1876496f8fSPaul Mundt 
19efd590d5SPaul Mundt #define NMISR		0x070
2076496f8fSPaul Mundt #define  NMISR_MAN_NMI	BIT(0)
2176496f8fSPaul Mundt #define  NMISR_AUX_NMI	BIT(1)
2276496f8fSPaul Mundt #define  NMISR_MASK	(NMISR_MAN_NMI | NMISR_AUX_NMI)
23efd590d5SPaul Mundt 
24efd590d5SPaul Mundt #define NMIMR		0x080
25efd590d5SPaul Mundt #define  NMIMR_MAN_NMIM	BIT(0)	/* Manual NMI mask */
26efd590d5SPaul Mundt #define  NMIMR_AUX_NMIM	BIT(1)	/* Auxiliary NMI mask */
2776496f8fSPaul Mundt #define  NMIMR_MASK	(NMIMR_MAN_NMIM | NMIMR_AUX_NMIM)
28efd590d5SPaul Mundt 
29efd590d5SPaul Mundt #define INTBSR		0x090
30efd590d5SPaul Mundt #define INTBMR		0x0a0
31efd590d5SPaul Mundt #define USRLEDR		0x0b0
32efd590d5SPaul Mundt #define MAPSWR		0x0c0
33efd590d5SPaul Mundt #define FPGAVR		0x0d0
34efd590d5SPaul Mundt #define FPGADR		0x0e0
35efd590d5SPaul Mundt #define PCBRR		0x0f0
36efd590d5SPaul Mundt #define RSR		0x100
37efd590d5SPaul Mundt #define EXTASR		0x110
38efd590d5SPaul Mundt #define SPCAR		0x120
39efd590d5SPaul Mundt #define INTMSR		0x130
4061a46766SPaul Mundt 
41efd590d5SPaul Mundt #define PCIECR		0x140
4261a46766SPaul Mundt #define  PCIECR_PCIEMUX1	BIT(15)
4361a46766SPaul Mundt #define  PCIECR_PCIEMUX0	BIT(14)
4461a46766SPaul Mundt #define  PCIECR_PRST4		BIT(12) /* slot 4 card present */
4561a46766SPaul Mundt #define  PCIECR_PRST3		BIT(11) /* slot 3 card present */
4661a46766SPaul Mundt #define  PCIECR_PRST2		BIT(10) /* slot 2 card present */
4761a46766SPaul Mundt #define  PCIECR_PRST1		BIT(9)  /* slot 1 card present */
48b6b77b2dSPaul Mundt #define  PCIECR_CLKEN		BIT(4)	/* oscillator enable */
4961a46766SPaul Mundt 
50efd590d5SPaul Mundt #define FAER		0x150
51efd590d5SPaul Mundt #define USRGPIR		0x160
52d8d6b902SPaul Mundt 
53efd590d5SPaul Mundt /* 0x170 reserved */
54d8d6b902SPaul Mundt 
55efd590d5SPaul Mundt #define LCLASR			0x180
56d8d6b902SPaul Mundt #define  LCLASR_FRAMEN		BIT(15)
57d8d6b902SPaul Mundt 
58d8d6b902SPaul Mundt #define  LCLASR_FPGA_SEL_SHIFT	12
59d8d6b902SPaul Mundt #define  LCLASR_NAND_SEL_SHIFT	8
60d8d6b902SPaul Mundt #define  LCLASR_NORB_SEL_SHIFT	4
61d8d6b902SPaul Mundt #define  LCLASR_NORA_SEL_SHIFT	0
62d8d6b902SPaul Mundt 
63d8d6b902SPaul Mundt #define  LCLASR_AREA_MASK	0x7
64d8d6b902SPaul Mundt 
65d8d6b902SPaul Mundt #define  LCLASR_FPGA_SEL_MASK	(LCLASR_AREA_MASK << LCLASR_FPGA_SEL_SHIFT)
66d8d6b902SPaul Mundt #define  LCLASR_NAND_SEL_MASK	(LCLASR_AREA_MASK << LCLASR_NAND_SEL_SHIFT)
67d8d6b902SPaul Mundt #define  LCLASR_NORB_SEL_MASK	(LCLASR_AREA_MASK << LCLASR_NORB_SEL_SHIFT)
68d8d6b902SPaul Mundt #define  LCLASR_NORA_SEL_MASK	(LCLASR_AREA_MASK << LCLASR_NORA_SEL_SHIFT)
69efd590d5SPaul Mundt 
70efd590d5SPaul Mundt #define SBCR		0x190
71efd590d5SPaul Mundt #define  SCBR_I2CMEN	BIT(0)	/* FPGA I2C master enable */
72efd590d5SPaul Mundt #define  SCBR_I2CCEN	BIT(1)	/* CPU I2C master enable */
73efd590d5SPaul Mundt 
74efd590d5SPaul Mundt #define PWRCR		0x1a0
75d9c94446SPaul Mundt #define  PWRCR_SCISEL0	BIT(0)
76d9c94446SPaul Mundt #define  PWRCR_SCISEL1	BIT(1)
77d9c94446SPaul Mundt #define  PWRCR_SCIEN	BIT(2)	/* Serial port enable */
78d9c94446SPaul Mundt #define  PWRCR_PDWNACK	BIT(5)	/* Power down acknowledge */
79d9c94446SPaul Mundt #define  PWRCR_PDWNREQ	BIT(7)	/* Power down request */
80d9c94446SPaul Mundt #define  PWRCR_INT2	BIT(11)	/* INT2 connection to power manager */
81d9c94446SPaul Mundt #define  PWRCR_BUPINIT	BIT(13)	/* DDR backup initialize */
82d9c94446SPaul Mundt #define  PWRCR_BKPRST	BIT(15) /* Backup power reset */
83d9c94446SPaul Mundt 
84efd590d5SPaul Mundt #define SPCBR		0x1b0
85efd590d5SPaul Mundt #define SPICR		0x1c0
86efd590d5SPaul Mundt #define SPIDR		0x1d0
87efd590d5SPaul Mundt #define I2CCR		0x1e0
88efd590d5SPaul Mundt #define I2CDR		0x1f0
89efd590d5SPaul Mundt #define FPGACR		0x200
90efd590d5SPaul Mundt #define IASELR1		0x210
91efd590d5SPaul Mundt #define IASELR2		0x220
92efd590d5SPaul Mundt #define IASELR3		0x230
93efd590d5SPaul Mundt #define IASELR4		0x240
94efd590d5SPaul Mundt #define IASELR5		0x250
95efd590d5SPaul Mundt #define IASELR6		0x260
96efd590d5SPaul Mundt #define IASELR7		0x270
97efd590d5SPaul Mundt #define IASELR8		0x280
98efd590d5SPaul Mundt #define IASELR9		0x290
99efd590d5SPaul Mundt #define IASELR10	0x2a0
100efd590d5SPaul Mundt #define IASELR11	0x2b0
101efd590d5SPaul Mundt #define IASELR12	0x2c0
102efd590d5SPaul Mundt #define IASELR13	0x2d0
103efd590d5SPaul Mundt #define IASELR14	0x2e0
104efd590d5SPaul Mundt #define IASELR15	0x2f0
105efd590d5SPaul Mundt /* 0x300 reserved */
106efd590d5SPaul Mundt #define IBSELR1		0x310
107efd590d5SPaul Mundt #define IBSELR2		0x320
108efd590d5SPaul Mundt #define IBSELR3		0x330
109efd590d5SPaul Mundt #define IBSELR4		0x340
110efd590d5SPaul Mundt #define IBSELR5		0x350
111efd590d5SPaul Mundt #define IBSELR6		0x360
112efd590d5SPaul Mundt #define IBSELR7		0x370
113efd590d5SPaul Mundt #define IBSELR8		0x380
114efd590d5SPaul Mundt #define IBSELR9		0x390
115efd590d5SPaul Mundt #define IBSELR10	0x3a0
116efd590d5SPaul Mundt #define IBSELR11	0x3b0
117efd590d5SPaul Mundt #define IBSELR12	0x3c0
118efd590d5SPaul Mundt #define IBSELR13	0x3d0
119efd590d5SPaul Mundt #define IBSELR14	0x3e0
120efd590d5SPaul Mundt #define IBSELR15	0x3f0
121efd590d5SPaul Mundt #define USRACR		0x400
122efd590d5SPaul Mundt #define BEEPR		0x410
123efd590d5SPaul Mundt #define USRLCDR		0x420
124efd590d5SPaul Mundt #define SMBCR		0x430
125efd590d5SPaul Mundt #define SMBDR		0x440
126efd590d5SPaul Mundt #define USBCR		0x450
127efd590d5SPaul Mundt #define AMSR		0x460
128efd590d5SPaul Mundt #define ACCR		0x470
129efd590d5SPaul Mundt #define SDIFCR		0x480
130efd590d5SPaul Mundt 
131efd590d5SPaul Mundt /* arch/sh/boards/mach-sdk7786/fpga.c */
132efd590d5SPaul Mundt extern void __iomem *sdk7786_fpga_base;
133efd590d5SPaul Mundt extern void sdk7786_fpga_init(void);
134efd590d5SPaul Mundt 
13576496f8fSPaul Mundt /* arch/sh/boards/mach-sdk7786/nmi.c */
13676496f8fSPaul Mundt extern void sdk7786_nmi_init(void);
13776496f8fSPaul Mundt 
138efd590d5SPaul Mundt #define SDK7786_FPGA_REGADDR(reg)	(sdk7786_fpga_base + (reg))
139efd590d5SPaul Mundt 
140efd590d5SPaul Mundt /*
141efd590d5SPaul Mundt  * A convenience wrapper from register offset to internal I2C address,
142efd590d5SPaul Mundt  * when the FPGA is in I2C slave mode.
143efd590d5SPaul Mundt  */
144efd590d5SPaul Mundt #define SDK7786_FPGA_I2CADDR(reg)	((reg) >> 3)
145efd590d5SPaul Mundt 
fpga_read_reg(unsigned int reg)146efd590d5SPaul Mundt static inline u16 fpga_read_reg(unsigned int reg)
147efd590d5SPaul Mundt {
148efd590d5SPaul Mundt 	return ioread16(sdk7786_fpga_base + reg);
149efd590d5SPaul Mundt }
150efd590d5SPaul Mundt 
fpga_write_reg(u16 val,unsigned int reg)151efd590d5SPaul Mundt static inline void fpga_write_reg(u16 val, unsigned int reg)
152efd590d5SPaul Mundt {
153efd590d5SPaul Mundt 	iowrite16(val, sdk7786_fpga_base + reg);
154efd590d5SPaul Mundt }
155efd590d5SPaul Mundt 
156efd590d5SPaul Mundt #endif /* __MACH_SDK7786_FPGA_H */
157