Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Exynos78x0 pinctrl driver. |
| 4 | * |
| 5 | * Copyright (c) 2020 Dzmitry Sankouski (dsankouski@gmail.com) |
| 6 | * |
| 7 | * based on drivers/pinctrl/exynos/pinctrl-exynos7420.c : |
| 8 | * Copyright (C) 2016 Samsung Electronics |
| 9 | * Thomas Abraham <thomas.ab@samsung.com> |
| 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <dm.h> |
| 14 | #include <errno.h> |
| 15 | #include <asm/io.h> |
| 16 | #include <dm/pinctrl.h> |
| 17 | #include <dm/root.h> |
| 18 | #include <fdtdec.h> |
| 19 | #include <asm/arch/pinmux.h> |
| 20 | #include "pinctrl-exynos.h" |
| 21 | |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 22 | static const struct pinctrl_ops exynos78x0_pinctrl_ops = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 23 | .set_state = exynos_pinctrl_set_state |
| 24 | }; |
| 25 | |
| 26 | /* pin banks of exynos78x0 pin-controller 0 (ALIVE) */ |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 27 | static const struct samsung_pin_bank_data exynos78x0_pin_banks0[] = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 28 | EXYNOS_PIN_BANK(6, 0x000, "etc0"), |
| 29 | EXYNOS_PIN_BANK(3, 0x020, "etc1"), |
| 30 | EXYNOS_PIN_BANK(8, 0x040, "gpa0"), |
| 31 | EXYNOS_PIN_BANK(8, 0x060, "gpa1"), |
| 32 | EXYNOS_PIN_BANK(8, 0x080, "gpa2"), |
| 33 | EXYNOS_PIN_BANK(5, 0x0a0, "gpa3"), |
| 34 | EXYNOS_PIN_BANK(2, 0x0c0, "gpq0"), |
| 35 | }; |
| 36 | |
| 37 | /* pin banks of exynos78x0 pin-controller 1 (CCORE) */ |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 38 | static const struct samsung_pin_bank_data exynos78x0_pin_banks1[] = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 39 | EXYNOS_PIN_BANK(2, 0x000, "gpm0"), |
| 40 | }; |
| 41 | |
| 42 | /* pin banks of exynos78x0 pin-controller 2 (DISPAUD) */ |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 43 | static const struct samsung_pin_bank_data exynos78x0_pin_banks2[] = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 44 | EXYNOS_PIN_BANK(4, 0x000, "gpz0"), |
| 45 | EXYNOS_PIN_BANK(6, 0x020, "gpz1"), |
| 46 | EXYNOS_PIN_BANK(4, 0x040, "gpz2"), |
| 47 | }; |
| 48 | |
| 49 | /* pin banks of exynos78x0 pin-controller 4 (FSYS) */ |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 50 | static const struct samsung_pin_bank_data exynos78x0_pin_banks4[] = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 51 | EXYNOS_PIN_BANK(3, 0x000, "gpr0"), |
| 52 | EXYNOS_PIN_BANK(8, 0x020, "gpr1"), |
| 53 | EXYNOS_PIN_BANK(2, 0x040, "gpr2"), |
| 54 | EXYNOS_PIN_BANK(4, 0x060, "gpr3"), |
| 55 | EXYNOS_PIN_BANK(6, 0x080, "gpr4"), |
| 56 | }; |
| 57 | |
| 58 | /* pin banks of exynos78x0 pin-controller 6 (TOP) */ |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 59 | static const struct samsung_pin_bank_data exynos78x0_pin_banks6[] = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 60 | EXYNOS_PIN_BANK(4, 0x000, "gpb0"), |
| 61 | EXYNOS_PIN_BANK(3, 0x020, "gpc0"), |
| 62 | EXYNOS_PIN_BANK(4, 0x040, "gpc1"), |
| 63 | EXYNOS_PIN_BANK(4, 0x060, "gpc4"), |
| 64 | EXYNOS_PIN_BANK(2, 0x080, "gpc5"), |
| 65 | EXYNOS_PIN_BANK(4, 0x0a0, "gpc6"), |
| 66 | EXYNOS_PIN_BANK(2, 0x0c0, "gpc8"), |
| 67 | EXYNOS_PIN_BANK(2, 0x0e0, "gpc9"), |
| 68 | EXYNOS_PIN_BANK(7, 0x100, "gpd1"), |
| 69 | EXYNOS_PIN_BANK(6, 0x120, "gpd2"), |
| 70 | EXYNOS_PIN_BANK(8, 0x140, "gpd3"), |
| 71 | EXYNOS_PIN_BANK(7, 0x160, "gpd4"), |
| 72 | EXYNOS_PIN_BANK(5, 0x180, "gpd5"), |
| 73 | EXYNOS_PIN_BANK(3, 0x1a0, "gpe0"), |
| 74 | EXYNOS_PIN_BANK(4, 0x1c0, "gpf0"), |
| 75 | EXYNOS_PIN_BANK(2, 0x1e0, "gpf1"), |
| 76 | EXYNOS_PIN_BANK(2, 0x200, "gpf2"), |
| 77 | EXYNOS_PIN_BANK(4, 0x220, "gpf3"), |
| 78 | EXYNOS_PIN_BANK(5, 0x240, "gpf4"), |
| 79 | }; |
| 80 | |
Minkyu Kang | 2b77d9a | 2021-11-04 16:13:15 +0900 | [diff] [blame] | 81 | const struct samsung_pin_ctrl exynos78x0_pin_ctrl[] = { |
Dzmitry Sankouski | 69bde04 | 2021-10-17 13:45:41 +0300 | [diff] [blame] | 82 | { |
| 83 | /* pin-controller instance 0 Alive data */ |
| 84 | .pin_banks = exynos78x0_pin_banks0, |
| 85 | .nr_banks = ARRAY_SIZE(exynos78x0_pin_banks0), |
| 86 | }, { |
| 87 | /* pin-controller instance 1 CCORE data */ |
| 88 | .pin_banks = exynos78x0_pin_banks1, |
| 89 | .nr_banks = ARRAY_SIZE(exynos78x0_pin_banks1), |
| 90 | }, { |
| 91 | /* pin-controller instance 2 DISPAUD data */ |
| 92 | .pin_banks = exynos78x0_pin_banks2, |
| 93 | .nr_banks = ARRAY_SIZE(exynos78x0_pin_banks2), |
| 94 | }, { |
| 95 | /* pin-controller instance 4 FSYS data */ |
| 96 | .pin_banks = exynos78x0_pin_banks4, |
| 97 | .nr_banks = ARRAY_SIZE(exynos78x0_pin_banks4), |
| 98 | }, { |
| 99 | /* pin-controller instance 6 TOP data */ |
| 100 | .pin_banks = exynos78x0_pin_banks6, |
| 101 | .nr_banks = ARRAY_SIZE(exynos78x0_pin_banks6), |
| 102 | }, |
| 103 | {/* list terminator */} |
| 104 | }; |
| 105 | |
| 106 | static const struct udevice_id exynos78x0_pinctrl_ids[] = { |
| 107 | { .compatible = "samsung,exynos78x0-pinctrl", |
| 108 | .data = (ulong)exynos78x0_pin_ctrl }, |
| 109 | { } |
| 110 | }; |
| 111 | |
| 112 | U_BOOT_DRIVER(pinctrl_exynos78x0) = { |
| 113 | .name = "pinctrl_exynos78x0", |
| 114 | .id = UCLASS_PINCTRL, |
| 115 | .of_match = exynos78x0_pinctrl_ids, |
| 116 | .priv_auto = sizeof(struct exynos_pinctrl_priv), |
| 117 | .ops = &exynos78x0_pinctrl_ops, |
| 118 | .probe = exynos_pinctrl_probe, |
| 119 | }; |