forked from mirrors/linux
		
	 b2aeb6da3d
			
		
	
	
		b2aeb6da3d
		
	
	
	
	
		
			
			Patch split function cdns3_drd_switch_gadget and cdns3_drd_switch_host into: - cdns3_drd_host_on - cdns3_drd_host_off - cdns3_drd_gadget_on - cdns3_drd_gadgett_off These functions don't have any shared code so it's better to have smaller, faster and easier functions. Signed-off-by: Pawel Laszczak <pawell@cadence.com> Reviewed-by: Peter Chen <peter.chen@nxp.com> Signed-off-by: Felipe Balbi <balbi@kernel.org>
		
			
				
	
	
		
			75 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| /*
 | |
|  * Cadence USBSS DRD Driver - host side
 | |
|  *
 | |
|  * Copyright (C) 2018-2019 Cadence Design Systems.
 | |
|  * Copyright (C) 2017-2018 NXP
 | |
|  *
 | |
|  * Authors: Peter Chen <peter.chen@nxp.com>
 | |
|  *          Pawel Laszczak <pawell@cadence.com>
 | |
|  */
 | |
| 
 | |
| #include <linux/platform_device.h>
 | |
| #include "core.h"
 | |
| #include "drd.h"
 | |
| #include "host-export.h"
 | |
| 
 | |
| static int __cdns3_host_init(struct cdns3 *cdns)
 | |
| {
 | |
| 	struct platform_device *xhci;
 | |
| 	int ret;
 | |
| 
 | |
| 	cdns3_drd_host_on(cdns);
 | |
| 
 | |
| 	xhci = platform_device_alloc("xhci-hcd", PLATFORM_DEVID_AUTO);
 | |
| 	if (!xhci) {
 | |
| 		dev_err(cdns->dev, "couldn't allocate xHCI device\n");
 | |
| 		return -ENOMEM;
 | |
| 	}
 | |
| 
 | |
| 	xhci->dev.parent = cdns->dev;
 | |
| 	cdns->host_dev = xhci;
 | |
| 
 | |
| 	ret = platform_device_add_resources(xhci, cdns->xhci_res,
 | |
| 					    CDNS3_XHCI_RESOURCES_NUM);
 | |
| 	if (ret) {
 | |
| 		dev_err(cdns->dev, "couldn't add resources to xHCI device\n");
 | |
| 		goto err1;
 | |
| 	}
 | |
| 
 | |
| 	ret = platform_device_add(xhci);
 | |
| 	if (ret) {
 | |
| 		dev_err(cdns->dev, "failed to register xHCI device\n");
 | |
| 		goto err1;
 | |
| 	}
 | |
| 
 | |
| 	return 0;
 | |
| err1:
 | |
| 	platform_device_put(xhci);
 | |
| 	return ret;
 | |
| }
 | |
| 
 | |
| static void cdns3_host_exit(struct cdns3 *cdns)
 | |
| {
 | |
| 	platform_device_unregister(cdns->host_dev);
 | |
| 	cdns->host_dev = NULL;
 | |
| 	cdns3_drd_host_off(cdns);
 | |
| }
 | |
| 
 | |
| int cdns3_host_init(struct cdns3 *cdns)
 | |
| {
 | |
| 	struct cdns3_role_driver *rdrv;
 | |
| 
 | |
| 	rdrv = devm_kzalloc(cdns->dev, sizeof(*rdrv), GFP_KERNEL);
 | |
| 	if (!rdrv)
 | |
| 		return -ENOMEM;
 | |
| 
 | |
| 	rdrv->start	= __cdns3_host_init;
 | |
| 	rdrv->stop	= cdns3_host_exit;
 | |
| 	rdrv->state	= CDNS3_ROLE_STATE_INACTIVE;
 | |
| 	rdrv->name	= "host";
 | |
| 
 | |
| 	cdns->roles[USB_ROLE_HOST] = rdrv;
 | |
| 
 | |
| 	return 0;
 | |
| }
 |