]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/sh/include/mach-sdk7786/mach/fpga.h
sh: pci: Support secondary FPGA-driven PCIe clocks on SDK7786.
[net-next-2.6.git] / arch / sh / include / mach-sdk7786 / mach / fpga.h
1 #ifndef __MACH_SDK7786_FPGA_H
2 #define __MACH_SDK7786_FPGA_H
3
4 #include <linux/io.h>
5 #include <linux/types.h>
6 #include <linux/bitops.h>
7
8 #define SRSTR           0x000
9 #define  SRSTR_MAGIC    0x1971  /* Fixed magical read value */
10
11 #define INTASR          0x010
12 #define INTAMR          0x020
13 #define MODSWR          0x030
14 #define INTTESTR        0x040
15 #define SYSSR           0x050
16 #define NRGPR           0x060
17 #define NMISR           0x070
18
19 #define NMIMR           0x080
20 #define  NMIMR_MAN_NMIM BIT(0)  /* Manual NMI mask */
21 #define  NMIMR_AUX_NMIM BIT(1)  /* Auxiliary NMI mask */
22
23 #define INTBSR          0x090
24 #define INTBMR          0x0a0
25 #define USRLEDR         0x0b0
26 #define MAPSWR          0x0c0
27 #define FPGAVR          0x0d0
28 #define FPGADR          0x0e0
29 #define PCBRR           0x0f0
30 #define RSR             0x100
31 #define EXTASR          0x110
32 #define SPCAR           0x120
33 #define INTMSR          0x130
34
35 #define PCIECR          0x140
36 #define  PCIECR_PCIEMUX1        BIT(15)
37 #define  PCIECR_PCIEMUX0        BIT(14)
38 #define  PCIECR_PRST4           BIT(12) /* slot 4 card present */
39 #define  PCIECR_PRST3           BIT(11) /* slot 3 card present */
40 #define  PCIECR_PRST2           BIT(10) /* slot 2 card present */
41 #define  PCIECR_PRST1           BIT(9)  /* slot 1 card present */
42 #define  PCIECR_CLKEN           BIT(4)  /* oscillator enable */
43
44 #define FAER            0x150
45 #define USRGPIR         0x160
46 /* 0x170 reserved */
47 #define LCLASR          0x180
48
49 #define SBCR            0x190
50 #define  SCBR_I2CMEN    BIT(0)  /* FPGA I2C master enable */
51 #define  SCBR_I2CCEN    BIT(1)  /* CPU I2C master enable */
52
53 #define PWRCR           0x1a0
54 #define  PWRCR_SCISEL0  BIT(0)
55 #define  PWRCR_SCISEL1  BIT(1)
56 #define  PWRCR_SCIEN    BIT(2)  /* Serial port enable */
57 #define  PWRCR_PDWNACK  BIT(5)  /* Power down acknowledge */
58 #define  PWRCR_PDWNREQ  BIT(7)  /* Power down request */
59 #define  PWRCR_INT2     BIT(11) /* INT2 connection to power manager */
60 #define  PWRCR_BUPINIT  BIT(13) /* DDR backup initialize */
61 #define  PWRCR_BKPRST   BIT(15) /* Backup power reset */
62
63 #define SPCBR           0x1b0
64 #define SPICR           0x1c0
65 #define SPIDR           0x1d0
66 #define I2CCR           0x1e0
67 #define I2CDR           0x1f0
68 #define FPGACR          0x200
69 #define IASELR1         0x210
70 #define IASELR2         0x220
71 #define IASELR3         0x230
72 #define IASELR4         0x240
73 #define IASELR5         0x250
74 #define IASELR6         0x260
75 #define IASELR7         0x270
76 #define IASELR8         0x280
77 #define IASELR9         0x290
78 #define IASELR10        0x2a0
79 #define IASELR11        0x2b0
80 #define IASELR12        0x2c0
81 #define IASELR13        0x2d0
82 #define IASELR14        0x2e0
83 #define IASELR15        0x2f0
84 /* 0x300 reserved */
85 #define IBSELR1         0x310
86 #define IBSELR2         0x320
87 #define IBSELR3         0x330
88 #define IBSELR4         0x340
89 #define IBSELR5         0x350
90 #define IBSELR6         0x360
91 #define IBSELR7         0x370
92 #define IBSELR8         0x380
93 #define IBSELR9         0x390
94 #define IBSELR10        0x3a0
95 #define IBSELR11        0x3b0
96 #define IBSELR12        0x3c0
97 #define IBSELR13        0x3d0
98 #define IBSELR14        0x3e0
99 #define IBSELR15        0x3f0
100 #define USRACR          0x400
101 #define BEEPR           0x410
102 #define USRLCDR         0x420
103 #define SMBCR           0x430
104 #define SMBDR           0x440
105 #define USBCR           0x450
106 #define AMSR            0x460
107 #define ACCR            0x470
108 #define SDIFCR          0x480
109
110 /* arch/sh/boards/mach-sdk7786/fpga.c */
111 extern void __iomem *sdk7786_fpga_base;
112 extern void sdk7786_fpga_init(void);
113
114 #define SDK7786_FPGA_REGADDR(reg)       (sdk7786_fpga_base + (reg))
115
116 /*
117  * A convenience wrapper from register offset to internal I2C address,
118  * when the FPGA is in I2C slave mode.
119  */
120 #define SDK7786_FPGA_I2CADDR(reg)       ((reg) >> 3)
121
122 static inline u16 fpga_read_reg(unsigned int reg)
123 {
124         return ioread16(sdk7786_fpga_base + reg);
125 }
126
127 static inline void fpga_write_reg(u16 val, unsigned int reg)
128 {
129         iowrite16(val, sdk7786_fpga_base + reg);
130 }
131
132 #endif /* __MACH_SDK7786_FPGA_H */