We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the file arch/arm/mach-rockchip/spl_pcie_ep_boot.c, there's the following 2 register definitions:
#define FIREWALL_PCIE_MASTER_SEC 0xfe0300f0
This has an incorrect offset because xxxx00F0 is the "Region Enable" register. Master registers are from xxxx0040 to xxxx00E8.
#define FIREWALL_PCIE_ACCESS 0xfe586040
This should be 0xfd586040 (SGRF_BUS->SOC_CON16), because 0xfe586xxx doesn't exist on RK3588.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the file arch/arm/mach-rockchip/spl_pcie_ep_boot.c, there's the following 2 register definitions:
#define FIREWALL_PCIE_MASTER_SEC 0xfe0300f0
This has an incorrect offset because xxxx00F0 is the "Region Enable" register. Master registers are from xxxx0040 to xxxx00E8.
#define FIREWALL_PCIE_ACCESS 0xfe586040
This should be 0xfd586040 (SGRF_BUS->SOC_CON16), because 0xfe586xxx doesn't exist on RK3588.
The text was updated successfully, but these errors were encountered: