From 510dd53175e6c7cc6f5a2c12d218fd78727de168 Mon Sep 17 00:00:00 2001 From: Hector Martin Date: Wed, 10 Nov 2021 18:03:43 +0900 Subject: [PATCH] pcie: Add t6000 support This one seems to need one extra magic poke Signed-off-by: Hector Martin --- src/pcie.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pcie.c b/src/pcie.c index 5a466582..e913ce20 100644 --- a/src/pcie.c +++ b/src/pcie.c @@ -152,6 +152,10 @@ int pcie_init(void) printf("pcie: Error applying %s for %s\n", "apcie-axi2af-tunables", path); return -1; } + + /* ??? */ + write32(rc_base + 0x4, 0); + if (tunables_apply_local(path, "apcie-common-tunables", 1)) { printf("pcie: Error applying %s for %s\n", "apcie-common-tunables", path); return -1;