mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-07 10:35:08 +07:00
![Hiroshi DOYU](/assets/img/avatar_default.png)
Tegra Memory Controller(MC) driver for Tegra20 Added to support MC General interrupts, mainly for IOMMU(GART). Signed-off-by: Hiroshi DOYU <hdoyu@nvidia.com> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17 lines
491 B
Plaintext
17 lines
491 B
Plaintext
NVIDIA Tegra20 MC(Memory Controller)
|
|
|
|
Required properties:
|
|
- compatible : "nvidia,tegra20-mc"
|
|
- reg : Should contain 2 register ranges(address and length); see the
|
|
example below. Note that the MC registers are interleaved with the
|
|
GART registers, and hence must be represented as multiple ranges.
|
|
- interrupts : Should contain MC General interrupt.
|
|
|
|
Example:
|
|
mc {
|
|
compatible = "nvidia,tegra20-mc";
|
|
reg = <0x7000f000 0x024
|
|
0x7000f03c 0x3c4>;
|
|
interrupts = <0 77 0x04>;
|
|
};
|