diff options
author | 2020-04-23 19:50:52 +0000 | |
---|---|---|
committer | 2020-04-23 19:50:52 +0000 | |
commit | e9c4ad80a873e5bf6b7ca1fb1597b95451fc4b63 (patch) | |
tree | 901672dcdca88efc1f052ddf8bd10a2b7cb54a1c | |
parent | Since apparently the bikeshedding over i.MX8M PCIe device tree (diff) | |
download | wireguard-openbsd-e9c4ad80a873e5bf6b7ca1fb1597b95451fc4b63.tar.xz wireguard-openbsd-e9c4ad80a873e5bf6b7ca1fb1597b95451fc4b63.zip |
Enable pcie_aux in addition to the other PCIe clocks on i.MX8M.
-rw-r--r-- | sys/dev/fdt/dwpcie.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/fdt/dwpcie.c b/sys/dev/fdt/dwpcie.c index 8ffe9c35b44..64428b02a8e 100644 --- a/sys/dev/fdt/dwpcie.c +++ b/sys/dev/fdt/dwpcie.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dwpcie.c,v 1.16 2020/04/23 19:48:26 patrick Exp $ */ +/* $OpenBSD: dwpcie.c,v 1.17 2020/04/23 19:50:52 patrick Exp $ */ /* * Copyright (c) 2018 Mark Kettenis <kettenis@openbsd.org> * @@ -671,6 +671,7 @@ dwpcie_imx8mq_init(struct dwpcie_softc *sc) clock_enable(sc->sc_node, "pcie_phy"); clock_enable(sc->sc_node, "pcie_bus"); clock_enable(sc->sc_node, "pcie"); + clock_enable(sc->sc_node, "pcie_aux"); /* Allow clocks to stabilize. */ delay(200); |