xref: /linux/drivers/bus/sun50i-de2.c (revision 50ac48ae3e80359a475216de8c3b0ec12374fa66)
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 
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);
18*50ac48aeSJernej Skrabec 	if (ret)
19*50ac48aeSJernej Skrabec 		return dev_err_probe(&pdev->dev, ret,
20*50ac48aeSJernej 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 
278818e865SIcenowy Zheng static int sun50i_de2_bus_remove(struct platform_device *pdev)
288818e865SIcenowy Zheng {
298818e865SIcenowy Zheng 	sunxi_sram_release(&pdev->dev);
308818e865SIcenowy Zheng 	return 0;
318818e865SIcenowy Zheng }
328818e865SIcenowy Zheng 
338818e865SIcenowy Zheng static const struct of_device_id sun50i_de2_bus_of_match[] = {
348818e865SIcenowy Zheng 	{ .compatible = "allwinner,sun50i-a64-de2", },
358818e865SIcenowy Zheng 	{ /* sentinel */ }
368818e865SIcenowy Zheng };
378818e865SIcenowy Zheng 
388818e865SIcenowy Zheng static struct platform_driver sun50i_de2_bus_driver = {
398818e865SIcenowy Zheng 	.probe = sun50i_de2_bus_probe,
408818e865SIcenowy Zheng 	.remove = sun50i_de2_bus_remove,
418818e865SIcenowy Zheng 	.driver = {
428818e865SIcenowy Zheng 		.name = "sun50i-de2-bus",
438818e865SIcenowy Zheng 		.of_match_table = sun50i_de2_bus_of_match,
448818e865SIcenowy Zheng 	},
458818e865SIcenowy Zheng };
468818e865SIcenowy Zheng 
478818e865SIcenowy Zheng builtin_platform_driver(sun50i_de2_bus_driver);
48