mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 10:44:23 +08:00
drm/tegra: sor: Add Tegra210 eDP support
The SOR found on Tegra210 is very similar to the version found on Tegra124, except that it no longer supports LVDS. Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
003fc84877
commit
3309ac8362
@ -197,9 +197,10 @@ of the following host1x client modules:
|
|||||||
- sor: serial output resource
|
- sor: serial output resource
|
||||||
|
|
||||||
Required properties:
|
Required properties:
|
||||||
- compatible: For Tegra124, must contain "nvidia,tegra124-sor". Otherwise,
|
- compatible: Should be:
|
||||||
must contain '"nvidia,<chip>-sor", "nvidia,tegra124-sor"', where <chip>
|
- "nvidia,tegra124-sor": for Tegra124 and Tegra132
|
||||||
is tegra132.
|
- "nvidia,tegra132-sor": for Tegra132
|
||||||
|
- "nvidia,tegra210-sor": for Tegra210
|
||||||
- reg: Physical base address and length of the controller's registers.
|
- reg: Physical base address and length of the controller's registers.
|
||||||
- interrupts: The interrupt outputs from the controller.
|
- interrupts: The interrupt outputs from the controller.
|
||||||
- clocks: Must contain an entry for each entry in clock-names.
|
- clocks: Must contain an entry for each entry in clock-names.
|
||||||
|
@ -1060,6 +1060,7 @@ static const struct of_device_id host1x_drm_subdevs[] = {
|
|||||||
{ .compatible = "nvidia,tegra132-dsi", },
|
{ .compatible = "nvidia,tegra132-dsi", },
|
||||||
{ .compatible = "nvidia,tegra210-dc", },
|
{ .compatible = "nvidia,tegra210-dc", },
|
||||||
{ .compatible = "nvidia,tegra210-dsi", },
|
{ .compatible = "nvidia,tegra210-dsi", },
|
||||||
|
{ .compatible = "nvidia,tegra210-sor", },
|
||||||
{ /* sentinel */ }
|
{ /* sentinel */ }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1600,6 +1600,7 @@ static int tegra_sor_remove(struct platform_device *pdev)
|
|||||||
|
|
||||||
static const struct of_device_id tegra_sor_of_match[] = {
|
static const struct of_device_id tegra_sor_of_match[] = {
|
||||||
{ .compatible = "nvidia,tegra124-sor", },
|
{ .compatible = "nvidia,tegra124-sor", },
|
||||||
|
{ .compatible = "nvidia,tegra210-sor", },
|
||||||
{ },
|
{ },
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(of, tegra_sor_of_match);
|
MODULE_DEVICE_TABLE(of, tegra_sor_of_match);
|
||||||
|
Loading…
Reference in New Issue
Block a user