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