xref: /linux/drivers/bus/sun50i-de2.c (revision 06d07429858317ded2db7986113a9e0129cd599b)
18818e865SIcenowy Zheng // SPDX-License-Identifier: GPL-2.0
28818e865SIcenowy Zheng /*
38818e865SIcenowy Zheng  * Allwinner A64 Display Engine 2.0 Bus Driver
48818e865SIcenowy Zheng  *
58818e865SIcenowy Zheng  * Copyright (C) 2018 Icenowy Zheng <icenowy@aosc.io>
68818e865SIcenowy Zheng  */
78818e865SIcenowy Zheng 
88818e865SIcenowy Zheng #include <linux/of_platform.h>
98818e865SIcenowy Zheng #include <linux/platform_device.h>
108818e865SIcenowy Zheng #include <linux/soc/sunxi/sunxi_sram.h>
118818e865SIcenowy Zheng 
sun50i_de2_bus_probe(struct platform_device * pdev)128818e865SIcenowy Zheng static int sun50i_de2_bus_probe(struct platform_device *pdev)
138818e865SIcenowy Zheng {
148818e865SIcenowy Zheng 	struct device_node *np = pdev->dev.of_node;
158818e865SIcenowy Zheng 	int ret;
168818e865SIcenowy Zheng 
178818e865SIcenowy Zheng 	ret = sunxi_sram_claim(&pdev->dev);
1850ac48aeSJernej Skrabec 	if (ret)
1950ac48aeSJernej Skrabec 		return dev_err_probe(&pdev->dev, ret,
2050ac48aeSJernej Skrabec 				     "Couldn't map SRAM to device\n");
218818e865SIcenowy Zheng 
228818e865SIcenowy Zheng 	of_platform_populate(np, NULL, NULL, &pdev->dev);
238818e865SIcenowy Zheng 
248818e865SIcenowy Zheng 	return 0;
258818e865SIcenowy Zheng }
268818e865SIcenowy Zheng 
sun50i_de2_bus_remove(struct platform_device * pdev)27*8b763a22SUwe Kleine-König static void sun50i_de2_bus_remove(struct platform_device *pdev)
288818e865SIcenowy Zheng {
298818e865SIcenowy Zheng 	sunxi_sram_release(&pdev->dev);
308818e865SIcenowy Zheng }
318818e865SIcenowy Zheng 
328818e865SIcenowy Zheng static const struct of_device_id sun50i_de2_bus_of_match[] = {
338818e865SIcenowy Zheng 	{ .compatible = "allwinner,sun50i-a64-de2", },
348818e865SIcenowy Zheng 	{ /* sentinel */ }
358818e865SIcenowy Zheng };
368818e865SIcenowy Zheng 
378818e865SIcenowy Zheng static struct platform_driver sun50i_de2_bus_driver = {
388818e865SIcenowy Zheng 	.probe = sun50i_de2_bus_probe,
39*8b763a22SUwe Kleine-König 	.remove_new = sun50i_de2_bus_remove,
408818e865SIcenowy Zheng 	.driver = {
418818e865SIcenowy Zheng 		.name = "sun50i-de2-bus",
428818e865SIcenowy Zheng 		.of_match_table = sun50i_de2_bus_of_match,
438818e865SIcenowy Zheng 	},
448818e865SIcenowy Zheng };
458818e865SIcenowy Zheng 
468818e865SIcenowy Zheng builtin_platform_driver(sun50i_de2_bus_driver);
47