1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __MACH_SDK7786_FPGA_H
3 #define __MACH_SDK7786_FPGA_H
6 #include <linux/types.h>
7 #include <linux/bitops.h>
10 #define SRSTR_MAGIC 0x1971 /* Fixed magical read value */
15 #define INTTESTR 0x040
20 #define NMISR_MAN_NMI BIT(0)
21 #define NMISR_AUX_NMI BIT(1)
22 #define NMISR_MASK (NMISR_MAN_NMI | NMISR_AUX_NMI)
25 #define NMIMR_MAN_NMIM BIT(0) /* Manual NMI mask */
26 #define NMIMR_AUX_NMIM BIT(1) /* Auxiliary NMI mask */
27 #define NMIMR_MASK (NMIMR_MAN_NMIM | NMIMR_AUX_NMIM)
42 #define PCIECR_PCIEMUX1 BIT(15)
43 #define PCIECR_PCIEMUX0 BIT(14)
44 #define PCIECR_PRST4 BIT(12) /* slot 4 card present */
45 #define PCIECR_PRST3 BIT(11) /* slot 3 card present */
46 #define PCIECR_PRST2 BIT(10) /* slot 2 card present */
47 #define PCIECR_PRST1 BIT(9) /* slot 1 card present */
48 #define PCIECR_CLKEN BIT(4) /* oscillator enable */
56 #define LCLASR_FRAMEN BIT(15)
58 #define LCLASR_FPGA_SEL_SHIFT 12
59 #define LCLASR_NAND_SEL_SHIFT 8
60 #define LCLASR_NORB_SEL_SHIFT 4
61 #define LCLASR_NORA_SEL_SHIFT 0
63 #define LCLASR_AREA_MASK 0x7
65 #define LCLASR_FPGA_SEL_MASK (LCLASR_AREA_MASK << LCLASR_FPGA_SEL_SHIFT)
66 #define LCLASR_NAND_SEL_MASK (LCLASR_AREA_MASK << LCLASR_NAND_SEL_SHIFT)
67 #define LCLASR_NORB_SEL_MASK (LCLASR_AREA_MASK << LCLASR_NORB_SEL_SHIFT)
68 #define LCLASR_NORA_SEL_MASK (LCLASR_AREA_MASK << LCLASR_NORA_SEL_SHIFT)
71 #define SCBR_I2CMEN BIT(0) /* FPGA I2C master enable */
72 #define SCBR_I2CCEN BIT(1) /* CPU I2C master enable */
75 #define PWRCR_SCISEL0 BIT(0)
76 #define PWRCR_SCISEL1 BIT(1)
77 #define PWRCR_SCIEN BIT(2) /* Serial port enable */
78 #define PWRCR_PDWNACK BIT(5) /* Power down acknowledge */
79 #define PWRCR_PDWNREQ BIT(7) /* Power down request */
80 #define PWRCR_INT2 BIT(11) /* INT2 connection to power manager */
81 #define PWRCR_BUPINIT BIT(13) /* DDR backup initialize */
82 #define PWRCR_BKPRST BIT(15) /* Backup power reset */
99 #define IASELR10 0x2a0
100 #define IASELR11 0x2b0
101 #define IASELR12 0x2c0
102 #define IASELR13 0x2d0
103 #define IASELR14 0x2e0
104 #define IASELR15 0x2f0
106 #define IBSELR1 0x310
107 #define IBSELR2 0x320
108 #define IBSELR3 0x330
109 #define IBSELR4 0x340
110 #define IBSELR5 0x350
111 #define IBSELR6 0x360
112 #define IBSELR7 0x370
113 #define IBSELR8 0x380
114 #define IBSELR9 0x390
115 #define IBSELR10 0x3a0
116 #define IBSELR11 0x3b0
117 #define IBSELR12 0x3c0
118 #define IBSELR13 0x3d0
119 #define IBSELR14 0x3e0
120 #define IBSELR15 0x3f0
123 #define USRLCDR 0x420
131 /* arch/sh/boards/mach-sdk7786/fpga.c */
132 extern void __iomem
*sdk7786_fpga_base
;
133 extern void sdk7786_fpga_init(void);
135 /* arch/sh/boards/mach-sdk7786/nmi.c */
136 extern void sdk7786_nmi_init(void);
138 #define SDK7786_FPGA_REGADDR(reg) (sdk7786_fpga_base + (reg))
141 * A convenience wrapper from register offset to internal I2C address,
142 * when the FPGA is in I2C slave mode.
144 #define SDK7786_FPGA_I2CADDR(reg) ((reg) >> 3)
146 static inline u16
fpga_read_reg(unsigned int reg
)
148 return ioread16(sdk7786_fpga_base
+ reg
);
151 static inline void fpga_write_reg(u16 val
, unsigned int reg
)
153 iowrite16(val
, sdk7786_fpga_base
+ reg
);
156 #endif /* __MACH_SDK7786_FPGA_H */