xref: /openbmc/linux/drivers/cdx/controller/cdx_controller.c (revision c900529f3d9161bfde5cca0754f83b4d3c3e0220)
18a7923dfSNipun Gupta // SPDX-License-Identifier: GPL-2.0
28a7923dfSNipun Gupta /*
38a7923dfSNipun Gupta  * CDX host controller driver for AMD versal-net platform.
48a7923dfSNipun Gupta  *
58a7923dfSNipun Gupta  * Copyright (C) 2022-2023, Advanced Micro Devices, Inc.
68a7923dfSNipun Gupta  */
78a7923dfSNipun Gupta 
8*a436194dSRob Herring #include <linux/mod_devicetable.h>
9*a436194dSRob Herring #include <linux/platform_device.h>
108a7923dfSNipun Gupta #include <linux/slab.h>
118a7923dfSNipun Gupta #include <linux/cdx/cdx_bus.h>
128a7923dfSNipun Gupta 
132a226927SNipun Gupta #include "cdx_controller.h"
148a7923dfSNipun Gupta #include "../cdx.h"
158a7923dfSNipun Gupta #include "mcdi_functions.h"
168a7923dfSNipun Gupta #include "mcdi.h"
178a7923dfSNipun Gupta 
cdx_mcdi_rpc_timeout(struct cdx_mcdi * cdx,unsigned int cmd)188a7923dfSNipun Gupta static unsigned int cdx_mcdi_rpc_timeout(struct cdx_mcdi *cdx, unsigned int cmd)
198a7923dfSNipun Gupta {
208a7923dfSNipun Gupta 	return MCDI_RPC_TIMEOUT;
218a7923dfSNipun Gupta }
228a7923dfSNipun Gupta 
cdx_mcdi_request(struct cdx_mcdi * cdx,const struct cdx_dword * hdr,size_t hdr_len,const struct cdx_dword * sdu,size_t sdu_len)238a7923dfSNipun Gupta static void cdx_mcdi_request(struct cdx_mcdi *cdx,
248a7923dfSNipun Gupta 			     const struct cdx_dword *hdr, size_t hdr_len,
258a7923dfSNipun Gupta 			     const struct cdx_dword *sdu, size_t sdu_len)
268a7923dfSNipun Gupta {
272a226927SNipun Gupta 	if (cdx_rpmsg_send(cdx, hdr, hdr_len, sdu, sdu_len))
282a226927SNipun Gupta 		dev_err(&cdx->rpdev->dev, "Failed to send rpmsg data\n");
298a7923dfSNipun Gupta }
308a7923dfSNipun Gupta 
318a7923dfSNipun Gupta static const struct cdx_mcdi_ops mcdi_ops = {
328a7923dfSNipun Gupta 	.mcdi_rpc_timeout = cdx_mcdi_rpc_timeout,
338a7923dfSNipun Gupta 	.mcdi_request = cdx_mcdi_request,
348a7923dfSNipun Gupta };
358a7923dfSNipun Gupta 
cdx_rpmsg_post_probe(struct cdx_controller * cdx)362a226927SNipun Gupta void cdx_rpmsg_post_probe(struct cdx_controller *cdx)
372a226927SNipun Gupta {
382a226927SNipun Gupta 	/* Register CDX controller with CDX bus driver */
392a226927SNipun Gupta 	if (cdx_register_controller(cdx))
402a226927SNipun Gupta 		dev_err(cdx->dev, "Failed to register CDX controller\n");
412a226927SNipun Gupta }
422a226927SNipun Gupta 
cdx_rpmsg_pre_remove(struct cdx_controller * cdx)432a226927SNipun Gupta void cdx_rpmsg_pre_remove(struct cdx_controller *cdx)
442a226927SNipun Gupta {
452a226927SNipun Gupta 	cdx_unregister_controller(cdx);
462a226927SNipun Gupta 	cdx_mcdi_wait_for_quiescence(cdx->priv, MCDI_RPC_TIMEOUT);
472a226927SNipun Gupta }
482a226927SNipun Gupta 
cdx_configure_device(struct cdx_controller * cdx,u8 bus_num,u8 dev_num,struct cdx_device_config * dev_config)4948a6c7bcSNipun Gupta static int cdx_configure_device(struct cdx_controller *cdx,
5048a6c7bcSNipun Gupta 				u8 bus_num, u8 dev_num,
5148a6c7bcSNipun Gupta 				struct cdx_device_config *dev_config)
5248a6c7bcSNipun Gupta {
5348a6c7bcSNipun Gupta 	int ret = 0;
5448a6c7bcSNipun Gupta 
5548a6c7bcSNipun Gupta 	switch (dev_config->type) {
5648a6c7bcSNipun Gupta 	case CDX_DEV_RESET_CONF:
5748a6c7bcSNipun Gupta 		ret = cdx_mcdi_reset_device(cdx->priv, bus_num, dev_num);
5848a6c7bcSNipun Gupta 		break;
5948a6c7bcSNipun Gupta 	default:
6048a6c7bcSNipun Gupta 		ret = -EINVAL;
6148a6c7bcSNipun Gupta 	}
6248a6c7bcSNipun Gupta 
6348a6c7bcSNipun Gupta 	return ret;
6448a6c7bcSNipun Gupta }
6548a6c7bcSNipun Gupta 
cdx_scan_devices(struct cdx_controller * cdx)668a7923dfSNipun Gupta static int cdx_scan_devices(struct cdx_controller *cdx)
678a7923dfSNipun Gupta {
688a7923dfSNipun Gupta 	struct cdx_mcdi *cdx_mcdi = cdx->priv;
698a7923dfSNipun Gupta 	u8 bus_num, dev_num, num_cdx_bus;
708a7923dfSNipun Gupta 	int ret;
718a7923dfSNipun Gupta 
728a7923dfSNipun Gupta 	/* MCDI FW Read: Fetch the number of CDX buses on this controller */
738a7923dfSNipun Gupta 	ret = cdx_mcdi_get_num_buses(cdx_mcdi);
748a7923dfSNipun Gupta 	if (ret < 0) {
758a7923dfSNipun Gupta 		dev_err(cdx->dev,
768a7923dfSNipun Gupta 			"Get number of CDX buses failed: %d\n", ret);
778a7923dfSNipun Gupta 		return ret;
788a7923dfSNipun Gupta 	}
798a7923dfSNipun Gupta 	num_cdx_bus = (u8)ret;
808a7923dfSNipun Gupta 
818a7923dfSNipun Gupta 	for (bus_num = 0; bus_num < num_cdx_bus; bus_num++) {
828a7923dfSNipun Gupta 		u8 num_cdx_dev;
838a7923dfSNipun Gupta 
848a7923dfSNipun Gupta 		/* MCDI FW Read: Fetch the number of devices present */
858a7923dfSNipun Gupta 		ret = cdx_mcdi_get_num_devs(cdx_mcdi, bus_num);
868a7923dfSNipun Gupta 		if (ret < 0) {
878a7923dfSNipun Gupta 			dev_err(cdx->dev,
888a7923dfSNipun Gupta 				"Get devices on CDX bus %d failed: %d\n", bus_num, ret);
898a7923dfSNipun Gupta 			continue;
908a7923dfSNipun Gupta 		}
918a7923dfSNipun Gupta 		num_cdx_dev = (u8)ret;
928a7923dfSNipun Gupta 
938a7923dfSNipun Gupta 		for (dev_num = 0; dev_num < num_cdx_dev; dev_num++) {
948a7923dfSNipun Gupta 			struct cdx_dev_params dev_params;
958a7923dfSNipun Gupta 
968a7923dfSNipun Gupta 			/* MCDI FW: Get the device config */
978a7923dfSNipun Gupta 			ret = cdx_mcdi_get_dev_config(cdx_mcdi, bus_num,
988a7923dfSNipun Gupta 						      dev_num, &dev_params);
998a7923dfSNipun Gupta 			if (ret) {
1008a7923dfSNipun Gupta 				dev_err(cdx->dev,
1018a7923dfSNipun Gupta 					"CDX device config get failed for %d(bus):%d(dev), %d\n",
1028a7923dfSNipun Gupta 					bus_num, dev_num, ret);
1038a7923dfSNipun Gupta 				continue;
1048a7923dfSNipun Gupta 			}
1058a7923dfSNipun Gupta 			dev_params.cdx = cdx;
1068a7923dfSNipun Gupta 
1078a7923dfSNipun Gupta 			/* Add the device to the cdx bus */
1088a7923dfSNipun Gupta 			ret = cdx_device_add(&dev_params);
1098a7923dfSNipun Gupta 			if (ret) {
1108a7923dfSNipun Gupta 				dev_err(cdx->dev, "registering cdx dev: %d failed: %d\n",
1118a7923dfSNipun Gupta 					dev_num, ret);
1128a7923dfSNipun Gupta 				continue;
1138a7923dfSNipun Gupta 			}
1148a7923dfSNipun Gupta 
1158a7923dfSNipun Gupta 			dev_dbg(cdx->dev, "CDX dev: %d on cdx bus: %d created\n",
1168a7923dfSNipun Gupta 				dev_num, bus_num);
1178a7923dfSNipun Gupta 		}
1188a7923dfSNipun Gupta 	}
1198a7923dfSNipun Gupta 
1208a7923dfSNipun Gupta 	return 0;
1218a7923dfSNipun Gupta }
1228a7923dfSNipun Gupta 
1238a7923dfSNipun Gupta static struct cdx_ops cdx_ops = {
1248a7923dfSNipun Gupta 	.scan		= cdx_scan_devices,
12548a6c7bcSNipun Gupta 	.dev_configure	= cdx_configure_device,
1268a7923dfSNipun Gupta };
1278a7923dfSNipun Gupta 
xlnx_cdx_probe(struct platform_device * pdev)1288a7923dfSNipun Gupta static int xlnx_cdx_probe(struct platform_device *pdev)
1298a7923dfSNipun Gupta {
1308a7923dfSNipun Gupta 	struct cdx_controller *cdx;
1318a7923dfSNipun Gupta 	struct cdx_mcdi *cdx_mcdi;
1328a7923dfSNipun Gupta 	int ret;
1338a7923dfSNipun Gupta 
1348a7923dfSNipun Gupta 	cdx_mcdi = kzalloc(sizeof(*cdx_mcdi), GFP_KERNEL);
1358a7923dfSNipun Gupta 	if (!cdx_mcdi)
1368a7923dfSNipun Gupta 		return -ENOMEM;
1378a7923dfSNipun Gupta 
1388a7923dfSNipun Gupta 	/* Store the MCDI ops */
1398a7923dfSNipun Gupta 	cdx_mcdi->mcdi_ops = &mcdi_ops;
1408a7923dfSNipun Gupta 	/* MCDI FW: Initialize the FW path */
1418a7923dfSNipun Gupta 	ret = cdx_mcdi_init(cdx_mcdi);
1428a7923dfSNipun Gupta 	if (ret) {
1438a7923dfSNipun Gupta 		dev_err_probe(&pdev->dev, ret, "MCDI Initialization failed\n");
1448a7923dfSNipun Gupta 		goto mcdi_init_fail;
1458a7923dfSNipun Gupta 	}
1468a7923dfSNipun Gupta 
1478a7923dfSNipun Gupta 	cdx = kzalloc(sizeof(*cdx), GFP_KERNEL);
1488a7923dfSNipun Gupta 	if (!cdx) {
1498a7923dfSNipun Gupta 		ret = -ENOMEM;
1508a7923dfSNipun Gupta 		goto cdx_alloc_fail;
1518a7923dfSNipun Gupta 	}
1528a7923dfSNipun Gupta 	platform_set_drvdata(pdev, cdx);
1538a7923dfSNipun Gupta 
1548a7923dfSNipun Gupta 	cdx->dev = &pdev->dev;
1558a7923dfSNipun Gupta 	cdx->priv = cdx_mcdi;
1568a7923dfSNipun Gupta 	cdx->ops = &cdx_ops;
1578a7923dfSNipun Gupta 
1582a226927SNipun Gupta 	ret = cdx_setup_rpmsg(pdev);
1592a226927SNipun Gupta 	if (ret) {
1602a226927SNipun Gupta 		if (ret != -EPROBE_DEFER)
1612a226927SNipun Gupta 			dev_err(&pdev->dev, "Failed to register CDX RPMsg transport\n");
1622a226927SNipun Gupta 		goto cdx_rpmsg_fail;
1632a226927SNipun Gupta 	}
1642a226927SNipun Gupta 
1652a226927SNipun Gupta 	dev_info(&pdev->dev, "Successfully registered CDX controller with RPMsg as transport\n");
1668a7923dfSNipun Gupta 	return 0;
1678a7923dfSNipun Gupta 
1682a226927SNipun Gupta cdx_rpmsg_fail:
1692a226927SNipun Gupta 	kfree(cdx);
1708a7923dfSNipun Gupta cdx_alloc_fail:
1718a7923dfSNipun Gupta 	cdx_mcdi_finish(cdx_mcdi);
1728a7923dfSNipun Gupta mcdi_init_fail:
1738a7923dfSNipun Gupta 	kfree(cdx_mcdi);
1748a7923dfSNipun Gupta 
1758a7923dfSNipun Gupta 	return ret;
1768a7923dfSNipun Gupta }
1778a7923dfSNipun Gupta 
xlnx_cdx_remove(struct platform_device * pdev)1788a7923dfSNipun Gupta static int xlnx_cdx_remove(struct platform_device *pdev)
1798a7923dfSNipun Gupta {
1808a7923dfSNipun Gupta 	struct cdx_controller *cdx = platform_get_drvdata(pdev);
1818a7923dfSNipun Gupta 	struct cdx_mcdi *cdx_mcdi = cdx->priv;
1828a7923dfSNipun Gupta 
1832a226927SNipun Gupta 	cdx_destroy_rpmsg(pdev);
1842a226927SNipun Gupta 
1858a7923dfSNipun Gupta 	kfree(cdx);
1868a7923dfSNipun Gupta 
1878a7923dfSNipun Gupta 	cdx_mcdi_finish(cdx_mcdi);
1888a7923dfSNipun Gupta 	kfree(cdx_mcdi);
1898a7923dfSNipun Gupta 
1908a7923dfSNipun Gupta 	return 0;
1918a7923dfSNipun Gupta }
1928a7923dfSNipun Gupta 
1938a7923dfSNipun Gupta static const struct of_device_id cdx_match_table[] = {
1948a7923dfSNipun Gupta 	{.compatible = "xlnx,versal-net-cdx",},
1958a7923dfSNipun Gupta 	{ },
1968a7923dfSNipun Gupta };
1978a7923dfSNipun Gupta 
1988a7923dfSNipun Gupta MODULE_DEVICE_TABLE(of, cdx_match_table);
1998a7923dfSNipun Gupta 
2008a7923dfSNipun Gupta static struct platform_driver cdx_pdriver = {
2018a7923dfSNipun Gupta 	.driver = {
2028a7923dfSNipun Gupta 		   .name = "cdx-controller",
2038a7923dfSNipun Gupta 		   .pm = NULL,
2048a7923dfSNipun Gupta 		   .of_match_table = cdx_match_table,
2058a7923dfSNipun Gupta 		   },
2068a7923dfSNipun Gupta 	.probe = xlnx_cdx_probe,
2078a7923dfSNipun Gupta 	.remove = xlnx_cdx_remove,
2088a7923dfSNipun Gupta };
2098a7923dfSNipun Gupta 
cdx_controller_init(void)2108a7923dfSNipun Gupta static int __init cdx_controller_init(void)
2118a7923dfSNipun Gupta {
2128a7923dfSNipun Gupta 	int ret;
2138a7923dfSNipun Gupta 
2148a7923dfSNipun Gupta 	ret = platform_driver_register(&cdx_pdriver);
2158a7923dfSNipun Gupta 	if (ret)
2168a7923dfSNipun Gupta 		pr_err("platform_driver_register() failed: %d\n", ret);
2178a7923dfSNipun Gupta 
2188a7923dfSNipun Gupta 	return ret;
2198a7923dfSNipun Gupta }
2208a7923dfSNipun Gupta 
cdx_controller_exit(void)2218a7923dfSNipun Gupta static void __exit cdx_controller_exit(void)
2228a7923dfSNipun Gupta {
2238a7923dfSNipun Gupta 	platform_driver_unregister(&cdx_pdriver);
2248a7923dfSNipun Gupta }
2258a7923dfSNipun Gupta 
2268a7923dfSNipun Gupta module_init(cdx_controller_init);
2278a7923dfSNipun Gupta module_exit(cdx_controller_exit);
2288a7923dfSNipun Gupta 
2298a7923dfSNipun Gupta MODULE_AUTHOR("AMD Inc.");
2308a7923dfSNipun Gupta MODULE_DESCRIPTION("CDX controller for AMD devices");
2318a7923dfSNipun Gupta MODULE_LICENSE("GPL");
232