blob: e0a6f2d38801e05ef39e5d590f3647d8137dc871 [file] [log] [blame]
Eugen Hristevf8164952019-10-09 09:23:39 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2019, Microchip Technology, Inc.
4 * Author: Eugen Hristev <eugen.hristev@microchip.com>
5 */
6
7#include <common.h>
8#include <dm.h>
9#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Eugen Hristevf8164952019-10-09 09:23:39 +000011#include <misc.h>
12#include <asm/io.h>
Simon Glass61b29b82020-02-03 07:36:15 -070013#include <linux/err.h>
Eugen Hristevf8164952019-10-09 09:23:39 +000014
15struct microchip_flexcom_regs {
16 u32 cr;
17};
18
Simon Glass8a8d24b2020-12-03 16:55:23 -070019struct microchip_flexcom_plat {
Eugen Hristevf8164952019-10-09 09:23:39 +000020 struct microchip_flexcom_regs *regs;
21 u32 flexcom_mode;
22};
23
Simon Glassd1998a92020-12-03 16:55:21 -070024static int microchip_flexcom_of_to_plat(struct udevice *dev)
Eugen Hristevf8164952019-10-09 09:23:39 +000025{
Simon Glass8a8d24b2020-12-03 16:55:23 -070026 struct microchip_flexcom_plat *plat = dev_get_plat(dev);
Eugen Hristevf8164952019-10-09 09:23:39 +000027 int ret;
28
Masahiro Yamada25484932020-07-17 14:36:48 +090029 plat->regs = map_physmem(dev_read_addr(dev),
Eugen Hristevf8164952019-10-09 09:23:39 +000030 sizeof(struct microchip_flexcom_regs),
31 MAP_NOCACHE);
32
33 ret = dev_read_u32(dev, "atmel,flexcom-mode", &plat->flexcom_mode);
34
35 if (IS_ERR_VALUE(ret)) {
36 debug("Missing atmel,flexcom-mode property\n");
37 return ret;
38 }
39
40 /*
41 * The mode must have only 2 bits. If any other bits are set,
42 * the value is not supported.
43 */
44 if (plat->flexcom_mode & 0xfffffffc) {
45 debug("Wrong atmel,flexcom-mode property\n");
46 return -EINVAL;
47 }
48
49 writel(plat->flexcom_mode, &plat->regs->cr);
50
51 return 0;
52}
53
54static const struct udevice_id microchip_flexcom_ids[] = {
55 { .compatible = "atmel,sama5d2-flexcom" },
56 { .compatible = "microchip,flexcom" },
57 {}
58};
59
60U_BOOT_DRIVER(microchip_flexcom) = {
61 .name = "microchip_flexcom",
62 .id = UCLASS_MISC,
63 .of_match = microchip_flexcom_ids,
Simon Glassd1998a92020-12-03 16:55:21 -070064 .of_to_plat = microchip_flexcom_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -070065 .plat_auto = sizeof(struct microchip_flexcom_plat),
Eugen Hristevf8164952019-10-09 09:23:39 +000066};