1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
/* $OpenBSD: glxpcib.c,v 1.8 2010/02/21 18:36:57 miod Exp $ */
/*
* Copyright (c) 2007 Marc Balmer <mbalmer@openbsd.org>
* Copyright (c) 2007 Michael Shalayeff
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* AMD CS5536 series LPC bridge also containing timer, watchdog, and GPIO.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/gpio.h>
#include <sys/sysctl.h>
#include <sys/timetc.h>
#include <machine/bus.h>
#include <machine/cpufunc.h>
#include <dev/gpio/gpiovar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
#define AMD5536_REV 0x51700017
#define AMD5536_REV_MASK 0xff
#define AMD5536_TMC 0x51400050
/* Multi-Functional General Purpose Timer */
#define MSR_LBAR_MFGPT 0x5140000d
#define AMD5536_MFGPT0_CMP1 0x00000000
#define AMD5536_MFGPT0_CMP2 0x00000002
#define AMD5536_MFGPT0_CNT 0x00000004
#define AMD5536_MFGPT0_SETUP 0x00000006
#define AMD5536_MFGPT_DIV_MASK 0x000f /* div = 1 << mask */
#define AMD5536_MFGPT_CLKSEL 0x0010
#define AMD5536_MFGPT_REV_EN 0x0020
#define AMD5536_MFGPT_CMP1DIS 0x0000
#define AMD5536_MFGPT_CMP1EQ 0x0040
#define AMD5536_MFGPT_CMP1GE 0x0080
#define AMD5536_MFGPT_CMP1EV 0x00c0
#define AMD5536_MFGPT_CMP2DIS 0x0000
#define AMD5536_MFGPT_CMP2EQ 0x0100
#define AMD5536_MFGPT_CMP2GE 0x0200
#define AMD5536_MFGPT_CMP2EV 0x0300
#define AMD5536_MFGPT_STOP_EN 0x0800
#define AMD5536_MFGPT_SET 0x1000
#define AMD5536_MFGPT_CMP1 0x2000
#define AMD5536_MFGPT_CMP2 0x4000
#define AMD5536_MFGPT_CNT_EN 0x8000
#define AMD5536_MFGPT_IRQ 0x51400028
#define AMD5536_MFGPT0_C1_IRQM 0x00000001
#define AMD5536_MFGPT1_C1_IRQM 0x00000002
#define AMD5536_MFGPT2_C1_IRQM 0x00000004
#define AMD5536_MFGPT3_C1_IRQM 0x00000008
#define AMD5536_MFGPT4_C1_IRQM 0x00000010
#define AMD5536_MFGPT5_C1_IRQM 0x00000020
#define AMD5536_MFGPT6_C1_IRQM 0x00000040
#define AMD5536_MFGPT7_C1_IRQM 0x00000080
#define AMD5536_MFGPT0_C2_IRQM 0x00000100
#define AMD5536_MFGPT1_C2_IRQM 0x00000200
#define AMD5536_MFGPT2_C2_IRQM 0x00000400
#define AMD5536_MFGPT3_C2_IRQM 0x00000800
#define AMD5536_MFGPT4_C2_IRQM 0x00001000
#define AMD5536_MFGPT5_C2_IRQM 0x00002000
#define AMD5536_MFGPT6_C2_IRQM 0x00004000
#define AMD5536_MFGPT7_C2_IRQM 0x00008000
#define AMD5536_MFGPT_NR 0x51400029
#define AMD5536_MFGPT0_C1_NMIM 0x00000001
#define AMD5536_MFGPT1_C1_NMIM 0x00000002
#define AMD5536_MFGPT2_C1_NMIM 0x00000004
#define AMD5536_MFGPT3_C1_NMIM 0x00000008
#define AMD5536_MFGPT4_C1_NMIM 0x00000010
#define AMD5536_MFGPT5_C1_NMIM 0x00000020
#define AMD5536_MFGPT6_C1_NMIM 0x00000040
#define AMD5536_MFGPT7_C1_NMIM 0x00000080
#define AMD5536_MFGPT0_C2_NMIM 0x00000100
#define AMD5536_MFGPT1_C2_NMIM 0x00000200
#define AMD5536_MFGPT2_C2_NMIM 0x00000400
#define AMD5536_MFGPT3_C2_NMIM 0x00000800
#define AMD5536_MFGPT4_C2_NMIM 0x00001000
#define AMD5536_MFGPT5_C2_NMIM 0x00002000
#define AMD5536_MFGPT6_C2_NMIM 0x00004000
#define AMD5536_MFGPT7_C2_NMIM 0x00008000
#define AMD5536_NMI_LEG 0x00010000
#define AMD5536_MFGPT0_C2_RSTEN 0x01000000
#define AMD5536_MFGPT1_C2_RSTEN 0x02000000
#define AMD5536_MFGPT2_C2_RSTEN 0x04000000
#define AMD5536_MFGPT3_C2_RSTEN 0x08000000
#define AMD5536_MFGPT4_C2_RSTEN 0x10000000
#define AMD5536_MFGPT5_C2_RSTEN 0x20000000
#define AMD5536_MFGPT_SETUP 0x5140002b
/* GPIO */
#define MSR_LBAR_GPIO 0x5140000c
#define AMD5536_GPIO_NPINS 32
#define AMD5536_GPIOH_OFFSET 0x80 /* high bank register offset */
#define AMD5536_GPIO_OUT_VAL 0x00 /* output value */
#define AMD5536_GPIO_OUT_EN 0x04 /* output enable */
#define AMD5536_GPIO_OD_EN 0x08 /* open-drain enable */
#define AMD5536_GPIO_OUT_INVRT_EN 0x0c /* invert output */
#define AMD5536_GPIO_PU_EN 0x18 /* pull-up enable */
#define AMD5536_GPIO_PD_EN 0x1c /* pull-down enable */
#define AMD5536_GPIO_IN_EN 0x20 /* input enable */
#define AMD5536_GPIO_IN_INVRT_EN 0x24 /* invert input */
#define AMD5536_GPIO_READ_BACK 0x30 /* read back value */
struct glxpcib_softc {
struct device sc_dev;
struct timecounter sc_timecounter;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
#ifndef SMALL_KERNEL
/* GPIO interface */
bus_space_tag_t sc_gpio_iot;
bus_space_handle_t sc_gpio_ioh;
struct gpio_chipset_tag sc_gpio_gc;
gpio_pin_t sc_gpio_pins[AMD5536_GPIO_NPINS];
#endif
};
struct cfdriver glxpcib_cd = {
NULL, "glxpcib", DV_DULL
};
int glxpcib_match(struct device *, void *, void *);
void glxpcib_attach(struct device *, struct device *, void *);
struct cfattach glxpcib_ca = {
sizeof(struct glxpcib_softc), glxpcib_match, glxpcib_attach
};
/* from arch/<*>/pci/pcib.c */
void pcibattach(struct device *parent, struct device *self, void *aux);
u_int glxpcib_get_timecount(struct timecounter *tc);
#ifndef SMALL_KERNEL
int glxpcib_wdogctl_cb(void *, int);
int glxpcib_gpio_pin_read(void *, int);
void glxpcib_gpio_pin_write(void *, int, int);
void glxpcib_gpio_pin_ctl(void *, int, int);
#endif
const struct pci_matchid glxpcib_devices[] = {
{ PCI_VENDOR_AMD, PCI_PRODUCT_AMD_CS5536_PCIB }
};
int
glxpcib_match(struct device *parent, void *match, void *aux)
{
if (pci_matchbyid((struct pci_attach_args *)aux, glxpcib_devices,
sizeof(glxpcib_devices) / sizeof(glxpcib_devices[0])))
return 2;
return 0;
}
void
glxpcib_attach(struct device *parent, struct device *self, void *aux)
{
struct glxpcib_softc *sc = (struct glxpcib_softc *)self;
struct timecounter *tc = &sc->sc_timecounter;
#ifndef SMALL_KERNEL
struct pci_attach_args *pa = aux;
u_int64_t wa, ga;
struct gpiobus_attach_args gba;
int i, gpio = 0;
#endif
tc->tc_get_timecount = glxpcib_get_timecount;
tc->tc_counter_mask = 0xffffffff;
tc->tc_frequency = 3579545;
tc->tc_name = "CS5536";
tc->tc_quality = 1000;
tc->tc_priv = sc;
tc_init(tc);
printf(": rev %d, 32-bit %lluHz timer",
(int)rdmsr(AMD5536_REV) & AMD5536_REV_MASK,
tc->tc_frequency);
#ifndef SMALL_KERNEL
/* Attach the watchdog timer */
sc->sc_iot = pa->pa_iot;
wa = rdmsr(MSR_LBAR_MFGPT);
if (wa & 0x100000000ULL &&
!bus_space_map(sc->sc_iot, wa & 0xffff, 64, 0, &sc->sc_ioh)) {
/* count in seconds (as upper level desires) */
bus_space_write_2(sc->sc_iot, sc->sc_ioh, AMD5536_MFGPT0_SETUP,
AMD5536_MFGPT_CNT_EN | AMD5536_MFGPT_CMP2EV |
AMD5536_MFGPT_CMP2 | AMD5536_MFGPT_DIV_MASK);
wdog_register(sc, glxpcib_wdogctl_cb);
printf(", watchdog");
}
/* map GPIO I/O space */
sc->sc_gpio_iot = pa->pa_iot;
ga = rdmsr(MSR_LBAR_GPIO);
if (ga & 0x100000000ULL &&
!bus_space_map(sc->sc_gpio_iot, ga & 0xffff, 0xff, 0,
&sc->sc_gpio_ioh)) {
printf(", gpio");
/* initialize pin array */
for (i = 0; i < AMD5536_GPIO_NPINS; i++) {
sc->sc_gpio_pins[i].pin_num = i;
sc->sc_gpio_pins[i].pin_caps = GPIO_PIN_INPUT |
GPIO_PIN_OUTPUT | GPIO_PIN_OPENDRAIN |
GPIO_PIN_PULLUP | GPIO_PIN_PULLDOWN |
GPIO_PIN_INVIN | GPIO_PIN_INVOUT;
/* read initial state */
sc->sc_gpio_pins[i].pin_state =
glxpcib_gpio_pin_read(sc, i);
}
/* create controller tag */
sc->sc_gpio_gc.gp_cookie = sc;
sc->sc_gpio_gc.gp_pin_read = glxpcib_gpio_pin_read;
sc->sc_gpio_gc.gp_pin_write = glxpcib_gpio_pin_write;
sc->sc_gpio_gc.gp_pin_ctl = glxpcib_gpio_pin_ctl;
gba.gba_name = "gpio";
gba.gba_gc = &sc->sc_gpio_gc;
gba.gba_pins = sc->sc_gpio_pins;
gba.gba_npins = AMD5536_GPIO_NPINS;
gpio = 1;
}
#endif
pcibattach(parent, self, aux);
#ifndef SMALL_KERNEL
if (gpio)
config_found(&sc->sc_dev, &gba, gpiobus_print);
#endif
}
u_int
glxpcib_get_timecount(struct timecounter *tc)
{
return rdmsr(AMD5536_TMC);
}
#ifndef SMALL_KERNEL
int
glxpcib_wdogctl_cb(void *v, int period)
{
struct glxpcib_softc *sc = v;
if (period > 0xffff)
period = 0xffff;
bus_space_write_2(sc->sc_iot, sc->sc_ioh, AMD5536_MFGPT0_SETUP,
AMD5536_MFGPT_CNT_EN | AMD5536_MFGPT_CMP2);
bus_space_write_2(sc->sc_iot, sc->sc_ioh, AMD5536_MFGPT0_CNT, 0);
bus_space_write_2(sc->sc_iot, sc->sc_ioh, AMD5536_MFGPT0_CMP2, period);
if (period)
wrmsr(AMD5536_MFGPT_NR,
rdmsr(AMD5536_MFGPT_NR) | AMD5536_MFGPT0_C2_RSTEN);
else
wrmsr(AMD5536_MFGPT_NR,
rdmsr(AMD5536_MFGPT_NR) & ~AMD5536_MFGPT0_C2_RSTEN);
return period;
}
int
glxpcib_gpio_pin_read(void *arg, int pin)
{
struct glxpcib_softc *sc = arg;
u_int32_t data;
int reg, off = 0;
reg = AMD5536_GPIO_IN_EN;
if (pin > 15) {
pin &= 0x0f;
off = AMD5536_GPIOH_OFFSET;
}
reg += off;
data = bus_space_read_4(sc->sc_gpio_iot, sc->sc_gpio_ioh, reg);
if (data & (1 << pin))
reg = AMD5536_GPIO_READ_BACK + off;
else
reg = AMD5536_GPIO_OUT_VAL + off;
data = bus_space_read_4(sc->sc_gpio_iot, sc->sc_gpio_ioh, reg);
return data & 1 << pin ? GPIO_PIN_HIGH : GPIO_PIN_LOW;
}
void
glxpcib_gpio_pin_write(void *arg, int pin, int value)
{
struct glxpcib_softc *sc = arg;
u_int32_t data;
int reg;
reg = AMD5536_GPIO_OUT_VAL;
if (pin > 15) {
pin &= 0x0f;
reg += AMD5536_GPIOH_OFFSET;
}
if (value == 1)
data = 1 << pin;
else
data = 1 << (pin + 16);
bus_space_write_4(sc->sc_gpio_iot, sc->sc_gpio_ioh, reg, data);
}
void
glxpcib_gpio_pin_ctl(void *arg, int pin, int flags)
{
struct glxpcib_softc *sc = arg;
int n, reg[7], val[7], nreg = 0, off = 0;
if (pin > 15) {
pin &= 0x0f;
off = AMD5536_GPIOH_OFFSET;
}
reg[nreg] = AMD5536_GPIO_IN_EN + off;
if (flags & GPIO_PIN_INPUT)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
reg[nreg] = AMD5536_GPIO_OUT_EN + off;
if (flags & GPIO_PIN_OUTPUT)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
reg[nreg] = AMD5536_GPIO_OD_EN + off;
if (flags & GPIO_PIN_OPENDRAIN)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
reg[nreg] = AMD5536_GPIO_PU_EN + off;
if (flags & GPIO_PIN_PULLUP)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
reg[nreg] = AMD5536_GPIO_PD_EN + off;
if (flags & GPIO_PIN_PULLDOWN)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
reg[nreg] = AMD5536_GPIO_IN_INVRT_EN + off;
if (flags & GPIO_PIN_INVIN)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
reg[nreg] = AMD5536_GPIO_OUT_INVRT_EN + off;
if (flags & GPIO_PIN_INVOUT)
val[nreg++] = 1 << pin;
else
val[nreg++] = 1 << (pin + 16);
/* set flags */
for (n = 0; n < nreg; n++)
bus_space_write_4(sc->sc_gpio_iot, sc->sc_gpio_ioh, reg[n],
val[n]);
}
#endif
|