Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 1 | // 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 Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 11 | #include <misc.h> |
| 12 | #include <asm/io.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 13 | #include <linux/err.h> |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 14 | |
| 15 | struct microchip_flexcom_regs { |
| 16 | u32 cr; |
| 17 | }; |
| 18 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 19 | struct microchip_flexcom_plat { |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 20 | struct microchip_flexcom_regs *regs; |
| 21 | u32 flexcom_mode; |
| 22 | }; |
| 23 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 24 | static int microchip_flexcom_of_to_plat(struct udevice *dev) |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 25 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 26 | struct microchip_flexcom_plat *plat = dev_get_plat(dev); |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 27 | int ret; |
| 28 | |
Masahiro Yamada | 2548493 | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 29 | plat->regs = map_physmem(dev_read_addr(dev), |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 30 | 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 | |
| 54 | static const struct udevice_id microchip_flexcom_ids[] = { |
| 55 | { .compatible = "atmel,sama5d2-flexcom" }, |
| 56 | { .compatible = "microchip,flexcom" }, |
| 57 | {} |
| 58 | }; |
| 59 | |
| 60 | U_BOOT_DRIVER(microchip_flexcom) = { |
| 61 | .name = "microchip_flexcom", |
| 62 | .id = UCLASS_MISC, |
| 63 | .of_match = microchip_flexcom_ids, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 64 | .of_to_plat = microchip_flexcom_of_to_plat, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 65 | .plat_auto = sizeof(struct microchip_flexcom_plat), |
Eugen Hristev | f816495 | 2019-10-09 09:23:39 +0000 | [diff] [blame] | 66 | }; |