/* $OpenBSD: omrng.c,v 1.3 2022/04/06 18:59:26 naddy Exp $ */ /* * Copyright (c) 2018, 2020 Mark Kettenis * * 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 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. */ #include #include #include #include #include #include #include #include #include /* Registers */ #define RNG_OUTPUT0 0x0000 #define RNG_OUTPUT1 0x0004 #define RNG_STATUS 0x0008 #define RNG_STATUS_READY (1 << 0) #define RNG_STATUS_SHUTDOWN (1 << 1) #define RNG_INTACK 0x0010 #define RNG_INTACK_READY (1 << 0) #define RNG_INTACK_SHUTDOWN (1 << 1) #define RNG_CONTROL 0x0014 #define RNG_CONTROL_START_CYCLES_SHIFT 16 #define RNG_CONTROL_TRNG_EN (1 << 10) #define RNG_CONFIG 0x0018 #define RNG_CONFIG_MIN_CYCLES_SHIFT 0 #define RNG_CONFIG_MAX_CYCLES_SHIFT 16 #define RNG_ALARMCNT 0x001c #define RNG_ALARMCNT_ALARM_TH_SHIFT 0 #define RNG_ALARMCNT_SHUTDOWN_TH_SHIFT 16 #define RNG_FROENABLE 0x0020 #define RNG_FROENABLE_MASK 0xffffff #define RNG_FRODETUNE 0x0024 #define RNG_ALARMMASK 0x0028 #define RNG_ALARMSTOP 0x002c #define HREAD4(sc, reg) \ (bus_space_read_4((sc)->sc_iot, (sc)->sc_ioh, (reg))) #define HWRITE4(sc, reg, val) \ bus_space_write_4((sc)->sc_iot, (sc)->sc_ioh, (reg), (val)) #define HSET4(sc, reg, bits) \ HWRITE4((sc), (reg), HREAD4((sc), (reg)) | (bits)) #define HCLR4(sc, reg, bits) \ HWRITE4((sc), (reg), HREAD4((sc), (reg)) & ~(bits)) struct omrng_softc { struct device sc_dev; bus_space_tag_t sc_iot; bus_space_handle_t sc_ioh; struct timeout sc_to; }; int omrng_match(struct device *, void *, void *); void omrng_attach(struct device *, struct device *, void *); const struct cfattach omrng_ca = { sizeof (struct omrng_softc), omrng_match, omrng_attach }; struct cfdriver omrng_cd = { NULL, "omrng", DV_DULL }; void omrng_rnd(void *); int omrng_match(struct device *parent, void *match, void *aux) { struct fdt_attach_args *faa = aux; return OF_is_compatible(faa->fa_node, "ti,omap4-rng"); } void omrng_attach(struct device *parent, struct device *self, void *aux) { struct omrng_softc *sc = (struct omrng_softc *)self; struct fdt_attach_args *faa = aux; if (faa->fa_nreg < 1) { printf(": no registers\n"); return; } sc->sc_iot = faa->fa_iot; if (bus_space_map(sc->sc_iot, faa->fa_reg[0].addr, faa->fa_reg[0].size, 0, &sc->sc_ioh)) { printf(": can't map registers\n"); return; } printf("\n"); if (OF_getproplen(faa->fa_node, "ti,hwmods") > 0) prcm_enablemodule(PRCM_RNG); /* Configure and enable the RNG. */ HWRITE4(sc, RNG_CONFIG, 0x21 << RNG_CONFIG_MIN_CYCLES_SHIFT | 0x22 << RNG_CONFIG_MAX_CYCLES_SHIFT); HWRITE4(sc, RNG_FRODETUNE, 0); HWRITE4(sc, RNG_FROENABLE, RNG_FROENABLE_MASK); HWRITE4(sc, RNG_ALARMCNT, 0xff << RNG_ALARMCNT_ALARM_TH_SHIFT | 0x4 << RNG_ALARMCNT_SHUTDOWN_TH_SHIFT); HWRITE4(sc, RNG_CONTROL, 0xff << RNG_CONTROL_START_CYCLES_SHIFT | RNG_CONTROL_TRNG_EN); timeout_set(&sc->sc_to, omrng_rnd, sc); omrng_rnd(sc); } void omrng_rnd(void *arg) { struct omrng_softc *sc = arg; uint32_t status, detune; status = HREAD4(sc, RNG_STATUS); if (status & RNG_STATUS_SHUTDOWN) { /* Clear alarms. */ HWRITE4(sc, RNG_ALARMMASK, 0); HWRITE4(sc, RNG_ALARMSTOP, 0); /* Detune FROs that are shutdown. */ detune = ~HREAD4(sc, RNG_FROENABLE) & RNG_FROENABLE_MASK; HSET4(sc, RNG_FRODETUNE, detune); /* Re-enable them. */ HWRITE4(sc, RNG_FROENABLE, RNG_FROENABLE_MASK); HWRITE4(sc, RNG_INTACK, RNG_INTACK_SHUTDOWN); } if (status & RNG_STATUS_READY) { enqueue_randomness(HREAD4(sc, RNG_OUTPUT0)); enqueue_randomness(HREAD4(sc, RNG_OUTPUT1)); HWRITE4(sc, RNG_INTACK, RNG_INTACK_READY); } timeout_add_sec(&sc->sc_to, 1); }