source: rtems/c/src/lib/libbsp/arm/imx/startup/imx_iomux.c @ 54380f42

5
Last change on this file since 54380f42 was 54380f42, checked in by Sebastian Huber <sebastian.huber@…>, on 10/06/17 at 09:02:53

bsp/imx: Add imx_iomux_configure_pins()

Update #3090.

  • Property mode set to 100644
File size: 11.3 KB
Line 
1/*-
2 * Copyright (c) 2014 Ian Lepore
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/arm/freescale/imx/imx_iomux.c 321938 2017-08-02 18:28:06Z ian $
27 */
28
29/*
30 * Pin mux and pad control driver for imx5 and imx6.
31 *
32 * This driver implements the fdt_pinctrl interface for configuring the gpio and
33 * peripheral pins based on fdt configuration data.
34 *
35 * When the driver attaches, it walks the entire fdt tree and automatically
36 * configures the pins for each device which has a pinctrl-0 property and whose
37 * status is "okay".  In addition it implements the fdt_pinctrl_configure()
38 * method which any other driver can call at any time to reconfigure its pins.
39 *
40 * The nature of the fsl,pins property in fdt data makes this driver's job very
41 * easy.  Instead of representing each pin and pad configuration using symbolic
42 * properties such as pullup-enable="true" and so on, the data simply contains
43 * the addresses of the registers that control the pins, and the raw values to
44 * store in those registers.
45 *
46 * The imx5 and imx6 SoCs also have a small number of "general purpose
47 * registers" in the iomuxc device which are used to control an assortment
48 * of completely unrelated aspects of SoC behavior.  This driver provides other
49 * drivers with direct access to those registers via simple accessor functions.
50 */
51
52#include <sys/param.h>
53#ifndef __rtems__
54#include <sys/systm.h>
55#include <sys/bus.h>
56#include <sys/kernel.h>
57#include <sys/module.h>
58#include <sys/malloc.h>
59#include <sys/rman.h>
60
61#include <machine/bus.h>
62
63#include <dev/ofw/openfirm.h>
64#include <dev/ofw/ofw_bus.h>
65#include <dev/ofw/ofw_bus_subr.h>
66#include <dev/fdt/fdt_pinctrl.h>
67#endif /* __rtems__ */
68
69#include <arm/freescale/imx/imx_iomuxvar.h>
70#ifndef __rtems__
71#include <arm/freescale/imx/imx_machdep.h>
72#else /* __rtems__ */
73#include <bsp.h>
74#include <bsp/fdt.h>
75#include <rtems/sysinit.h>
76#include <errno.h>
77#include <libfdt.h>
78#include <stdlib.h>
79
80typedef size_t bus_size_t;
81typedef int phandle_t;
82#endif /* __rtems__ */
83
84struct iomux_softc {
85#ifndef __rtems__
86        device_t        dev;
87        struct resource *mem_res;
88        u_int           last_gpregaddr;
89#else /* __rtems__ */
90        volatile uint32_t *regs;
91#endif /* __rtems__ */
92};
93
94#ifndef __rtems__
95static struct iomux_softc *iomux_sc;
96
97static struct ofw_compat_data compat_data[] = {
98        {"fsl,imx6dl-iomuxc",   true},
99        {"fsl,imx6q-iomuxc",    true},
100        {"fsl,imx6sl-iomuxc",   true},
101        {"fsl,imx6ul-iomuxc",   true},
102        {"fsl,imx6sx-iomuxc",   true},
103        {"fsl,imx53-iomuxc",    true},
104        {"fsl,imx51-iomuxc",    true},
105        {NULL,                  false},
106};
107#else /* __rtems__ */
108static struct iomux_softc iomux_sc_instance;
109
110#define iomux_sc (&iomux_sc_instance);
111
112static void
113imx_iomux_init(void)
114{
115        const void *fdt;
116        int node;
117        struct iomux_softc *sc;
118
119        fdt = bsp_fdt_get();
120        node = fdt_node_offset_by_compatible(fdt, -1, "fsl,imx7d-iomuxc");
121        sc = iomux_sc;
122        sc->regs = imx_get_reg_of_node(fdt, node);
123}
124
125RTEMS_SYSINIT_ITEM(imx_iomux_init, RTEMS_SYSINIT_BSP_START,
126    RTEMS_SYSINIT_ORDER_MIDDLE);
127
128#define OF_node_from_xref(phandle) fdt_node_offset_by_phandle(fdt, phandle)
129
130static int
131imx_iomux_getencprop_alloc(const char *fdt, int node, const char *name,
132    size_t elsz, void **buf)
133{
134        int len;
135        const uint32_t *val;
136        int i;
137        uint32_t *cell;
138
139        val = fdt_getprop(fdt, node, "fsl,pins", &len);
140        if (val == NULL || len < 0 || len % elsz != 0) {
141                return (-1);
142        }
143
144        cell = malloc((size_t)len);
145        *buf = cell;
146        if (cell == NULL) {
147                return (-1);
148        }
149
150        for (i = 0; i < len / 4; ++i) {
151                cell[i] = fdt32_to_cpu(val[i]);
152        }
153
154        return (len / (int)elsz);
155}
156
157#define OF_getencprop_alloc(node, name, elsz, buf) \
158    imx_iomux_getencprop_alloc(fdt, node, name, elsz, buf)
159
160#define OF_prop_free(buf) free(buf)
161#endif /* __rtems__ */
162
163/*
164 * Each tuple in an fsl,pins property contains these fields.
165 */
166struct pincfg {
167        uint32_t mux_reg;
168        uint32_t padconf_reg;
169        uint32_t input_reg;
170        uint32_t mux_val;
171        uint32_t input_val;
172        uint32_t padconf_val;
173};
174
175#define PADCONF_NONE    (1U << 31)      /* Do not configure pad. */
176#define PADCONF_SION    (1U << 30)      /* Force SION bit in mux register. */
177#define PADMUX_SION     (1U <<  4)      /* The SION bit in the mux register. */
178
179static inline uint32_t
180RD4(struct iomux_softc *sc, bus_size_t off)
181{
182
183#ifndef __rtems__
184        return (bus_read_4(sc->mem_res, off));
185#else /* __rtems__ */
186        return (sc->regs[off / 4]);
187#endif /* __rtems__ */
188}
189
190static inline void
191WR4(struct iomux_softc *sc, bus_size_t off, uint32_t val)
192{
193
194#ifndef __rtems__
195        bus_write_4(sc->mem_res, off, val);
196#else /* __rtems__ */
197        sc->regs[off / 4] = val;
198#endif /* __rtems__ */
199}
200
201static void
202iomux_configure_input(struct iomux_softc *sc, uint32_t reg, uint32_t val)
203{
204        u_int select, mask, shift, width;
205
206        /* If register and value are zero, there is nothing to configure. */
207        if (reg == 0 && val == 0)
208                return;
209
210        /*
211         * If the config value has 0xff in the high byte it is encoded:
212         *      31     23      15      7        0
213         *      | 0xff | shift | width | select |
214         * We need to mask out the old select value and OR in the new, using a
215         * mask of the given width and shifting the values up by shift.
216         */
217        if ((val & 0xff000000) == 0xff000000) {
218                select = val & 0x000000ff;
219                width = (val & 0x0000ff00) >> 8;
220                shift = (val & 0x00ff0000) >> 16;
221                mask  = ((1u << width) - 1) << shift;
222                val = (RD4(sc, reg) & ~mask) | (select << shift);
223        }
224        WR4(sc, reg, val);
225}
226
227#ifndef __rtems__
228static int
229iomux_configure_pins(device_t dev, phandle_t cfgxref)
230#else /* __rtems__ */
231int imx_iomux_configure_pins(const void *fdt, uint32_t cfgxref)
232#endif /* __rtems__ */
233{
234        struct iomux_softc *sc;
235        struct pincfg *cfgtuples, *cfg;
236        phandle_t cfgnode;
237        int i, ntuples;
238        uint32_t sion;
239
240#ifndef __rtems__
241        sc = device_get_softc(dev);
242#else /* __rtems__ */
243        sc = iomux_sc;
244#endif /* __rtems__ */
245        cfgnode = OF_node_from_xref(cfgxref);
246        ntuples = OF_getencprop_alloc(cfgnode, "fsl,pins", sizeof(*cfgtuples),
247            (void **)&cfgtuples);
248        if (ntuples < 0)
249                return (ENOENT);
250        if (ntuples == 0)
251                return (0); /* Empty property is not an error. */
252        for (i = 0, cfg = cfgtuples; i < ntuples; i++, cfg++) {
253                sion = (cfg->padconf_val & PADCONF_SION) ? PADMUX_SION : 0;
254                WR4(sc, cfg->mux_reg, cfg->mux_val | sion);
255                iomux_configure_input(sc, cfg->input_reg, cfg->input_val);
256                if ((cfg->padconf_val & PADCONF_NONE) == 0)
257                        WR4(sc, cfg->padconf_reg, cfg->padconf_val);
258#ifndef __rtems__
259                if (bootverbose) {
260                        char name[32];
261                        OF_getprop(cfgnode, "name", &name, sizeof(name));
262                        printf("%16s: muxreg 0x%04x muxval 0x%02x "
263                            "inpreg 0x%04x inpval 0x%02x "
264                            "padreg 0x%04x padval 0x%08x\n",
265                            name, cfg->mux_reg, cfg->mux_val | sion,
266                            cfg->input_reg, cfg->input_val,
267                            cfg->padconf_reg, cfg->padconf_val);
268                }
269#endif /* __rtems__ */
270        }
271        OF_prop_free(cfgtuples);
272        return (0);
273}
274
275#ifndef __rtems__
276static int
277iomux_probe(device_t dev)
278{
279
280        if (!ofw_bus_status_okay(dev))
281                return (ENXIO);
282
283        if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data)
284                return (ENXIO);
285
286        device_set_desc(dev, "Freescale i.MX pin configuration");
287        return (BUS_PROBE_DEFAULT);
288}
289
290static int
291iomux_detach(device_t dev)
292{
293
294        /* This device is always present. */
295        return (EBUSY);
296}
297
298static int
299iomux_attach(device_t dev)
300{
301        struct iomux_softc * sc;
302        int rid;
303
304        sc = device_get_softc(dev);
305        sc->dev = dev;
306
307        switch (imx_soc_type()) {
308        case IMXSOC_51:
309                sc->last_gpregaddr = 1 * sizeof(uint32_t);
310                break;
311        case IMXSOC_53:
312                sc->last_gpregaddr = 2 * sizeof(uint32_t);
313                break;
314        case IMXSOC_6DL:
315        case IMXSOC_6S:
316        case IMXSOC_6SL:
317        case IMXSOC_6Q:
318                sc->last_gpregaddr = 13 * sizeof(uint32_t);
319                break;
320        case IMXSOC_6UL:
321                sc->last_gpregaddr = 14 * sizeof(uint32_t);
322                break;
323        default:
324                device_printf(dev, "Unknown SoC type\n");
325                return (ENXIO);
326        }
327
328        rid = 0;
329        sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
330            RF_ACTIVE);
331        if (sc->mem_res == NULL) {
332                device_printf(dev, "Cannot allocate memory resources\n");
333                return (ENXIO);
334        }
335
336        iomux_sc = sc;
337
338        /*
339         * Register as a pinctrl device, and call the convenience function that
340         * walks the entire device tree invoking FDT_PINCTRL_CONFIGURE() on any
341         * pinctrl-0 property cells whose xref phandle refers to a configuration
342         * that is a child node of our node in the tree.
343         *
344         * The pinctrl bindings documentation specifically mentions that the
345         * pinctrl device itself may have a pinctrl-0 property which contains
346         * static configuration to be applied at device init time.  The tree
347         * walk will automatically handle this for us when it passes through our
348         * node in the tree.
349         */
350        fdt_pinctrl_register(dev, "fsl,pins");
351        fdt_pinctrl_configure_tree(dev);
352
353        return (0);
354}
355
356uint32_t
357imx_iomux_gpr_get(u_int regaddr)
358{
359        struct iomux_softc * sc;
360
361        sc = iomux_sc;
362        KASSERT(sc != NULL, ("%s called before attach", __FUNCTION__));
363        KASSERT(regaddr >= 0 && regaddr <= sc->last_gpregaddr,
364            ("%s bad regaddr %u, max %u", __FUNCTION__, regaddr,
365            sc->last_gpregaddr));
366
367        return (RD4(iomux_sc, regaddr));
368}
369
370void
371imx_iomux_gpr_set(u_int regaddr, uint32_t val)
372{
373        struct iomux_softc * sc;
374
375        sc = iomux_sc;
376        KASSERT(sc != NULL, ("%s called before attach", __FUNCTION__));
377        KASSERT(regaddr >= 0 && regaddr <= sc->last_gpregaddr,
378            ("%s bad regaddr %u, max %u", __FUNCTION__, regaddr,
379            sc->last_gpregaddr));
380
381        WR4(iomux_sc, regaddr, val);
382}
383
384void
385imx_iomux_gpr_set_masked(u_int regaddr, uint32_t clrbits, uint32_t setbits)
386{
387        struct iomux_softc * sc;
388        uint32_t val;
389
390        sc = iomux_sc;
391        KASSERT(sc != NULL, ("%s called before attach", __FUNCTION__));
392        KASSERT(regaddr >= 0 && regaddr <= sc->last_gpregaddr,
393            ("%s bad regaddr %u, max %u", __FUNCTION__, regaddr,
394            sc->last_gpregaddr));
395
396        val = RD4(iomux_sc, regaddr * 4);
397        val = (val & ~clrbits) | setbits;
398        WR4(iomux_sc, regaddr, val);
399}
400
401static device_method_t imx_iomux_methods[] = {
402        /* Device interface */
403        DEVMETHOD(device_probe,         iomux_probe),
404        DEVMETHOD(device_attach,        iomux_attach),
405        DEVMETHOD(device_detach,        iomux_detach),
406
407        /* fdt_pinctrl interface */
408        DEVMETHOD(fdt_pinctrl_configure,iomux_configure_pins),
409
410        DEVMETHOD_END
411};
412
413static driver_t imx_iomux_driver = {
414        "imx_iomux",
415        imx_iomux_methods,
416        sizeof(struct iomux_softc),
417};
418
419static devclass_t imx_iomux_devclass;
420
421EARLY_DRIVER_MODULE(imx_iomux, simplebus, imx_iomux_driver,
422    imx_iomux_devclass, 0, 0, BUS_PASS_CPU + BUS_PASS_ORDER_LATE);
423
424#endif /* __rtems__ */
Note: See TracBrowser for help on using the repository browser.