mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 00:11:51 +01:00 
			
		
		
		
	Try to maintain some consistency between these variables by using _plat as a suffix for them. Signed-off-by: Simon Glass <sjg@chromium.org>
		
			
				
	
	
		
			67 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * (C) Copyright 2019, Microchip Technology, Inc.
 | |
|  * Author: Eugen Hristev <eugen.hristev@microchip.com>
 | |
|  */
 | |
| 
 | |
| #include <common.h>
 | |
| #include <dm.h>
 | |
| #include <errno.h>
 | |
| #include <log.h>
 | |
| #include <misc.h>
 | |
| #include <asm/io.h>
 | |
| #include <linux/err.h>
 | |
| 
 | |
| struct microchip_flexcom_regs {
 | |
| 	u32 cr;
 | |
| };
 | |
| 
 | |
| struct microchip_flexcom_plat {
 | |
| 	struct microchip_flexcom_regs *regs;
 | |
| 	u32 flexcom_mode;
 | |
| };
 | |
| 
 | |
| static int microchip_flexcom_of_to_plat(struct udevice *dev)
 | |
| {
 | |
| 	struct microchip_flexcom_plat *plat = dev_get_plat(dev);
 | |
| 	int ret;
 | |
| 
 | |
| 	plat->regs = map_physmem(dev_read_addr(dev),
 | |
| 				 sizeof(struct microchip_flexcom_regs),
 | |
| 				MAP_NOCACHE);
 | |
| 
 | |
| 	ret = dev_read_u32(dev, "atmel,flexcom-mode", &plat->flexcom_mode);
 | |
| 
 | |
| 	if (IS_ERR_VALUE(ret)) {
 | |
| 		debug("Missing atmel,flexcom-mode property\n");
 | |
| 		return ret;
 | |
| 	}
 | |
| 
 | |
| 	/*
 | |
| 	 * The mode must have only 2 bits. If any other bits are set,
 | |
| 	 * the value is not supported.
 | |
| 	 */
 | |
| 	if (plat->flexcom_mode & 0xfffffffc) {
 | |
| 		debug("Wrong atmel,flexcom-mode property\n");
 | |
| 		return -EINVAL;
 | |
| 	}
 | |
| 
 | |
| 	writel(plat->flexcom_mode, &plat->regs->cr);
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| static const struct udevice_id microchip_flexcom_ids[] = {
 | |
| 	{ .compatible = "atmel,sama5d2-flexcom" },
 | |
| 	{ .compatible = "microchip,flexcom" },
 | |
| 	{}
 | |
| };
 | |
| 
 | |
| U_BOOT_DRIVER(microchip_flexcom) = {
 | |
| 	.name	= "microchip_flexcom",
 | |
| 	.id	= UCLASS_MISC,
 | |
| 	.of_match = microchip_flexcom_ids,
 | |
| 	.of_to_plat = microchip_flexcom_of_to_plat,
 | |
| 	.plat_auto	= sizeof(struct microchip_flexcom_plat),
 | |
| };
 |