diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2020-04-23 19:50:53 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2020-04-23 19:50:53 +0000 |
commit | 597e7ab23581ec2c24c0686215d296ffa73a69f8 (patch) | |
tree | a6177850cd67c7da6d5b13262689534d99cfe041 | |
parent | 734b71c350a61b9b58b02e96a64da20fe23a5993 (diff) |
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); |