Sean Anderson
df1875ea31
pinctrl: zynqmp: Add SPL support
...
Although the pinctrl pm requests are implemented in the PMU firmware,
PM_QUERY_DATA is actually implemented in ATF. In SPL (or when running in
EL3), ATF is not yet running, so we need to implement this API
ourselves. Do the bare minimum, allowing SPL to enumerate functions, but
don't bother with groups. Groups take up a lot of space, and can be
emulated with pins. For example, a node like
display-port {
mux {
groups = "dpaux0_1";
function = "dpaux0";
};
};
can be replaced by
display-port {
mux {
pins = "MIO34", "MIO35", "MIO36", "MIO37";
function = "dpaux0";
};
};
While this isn't backwards-compatible with existing devicetrees, it's
more than enough for SPL where we may only need to mux one or two pins.
Add SPL_PINCTRL_ZYNQMP to ensure there's no SPL size growth when pinctrl
is enabled in U-Boot but isn't necessary for SPL. The only config this
would affect is Kria, but SPL_PINCTRL_GENERIC is disabled so
SPL_PINCTRL_ZYNQMP is not selected.
Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/20260129184011.3932790-1-sean.anderson@linux.dev
2026-02-13 08:16:25 +01:00
..
2025-11-06 08:30:33 -06:00
2025-11-10 11:30:56 -06:00
2026-02-02 14:25:48 -06:00
2025-02-27 12:11:02 -06:00
2026-02-04 14:12:56 +02:00
2025-12-31 11:50:56 -06:00
2025-12-08 13:17:27 -06:00
2025-08-15 14:17:30 -06:00
2025-09-20 17:45:39 -03:00
2025-12-04 09:39:11 -06:00
2026-01-06 14:44:21 -06:00
2025-08-18 15:47:57 +02:00
2025-10-30 10:11:18 +08:00
2025-12-05 16:24:56 -06:00
2025-03-19 03:36:19 +01:00
2026-01-14 16:25:09 +01:00
2025-11-21 19:25:56 +01:00
2025-12-04 09:38:58 -06:00
2024-10-17 03:12:47 +02:00
2025-09-26 11:55:13 -06:00
2025-05-30 09:49:31 +01:00
2025-08-25 16:20:48 +02:00
2025-06-02 17:26:15 -06:00
2024-11-03 21:27:12 -06:00
2024-10-24 09:45:55 +02:00
2025-09-24 11:03:16 -06:00
2025-06-02 17:26:15 -06:00
2025-04-28 12:45:44 -06:00
2025-04-28 12:45:44 -06:00
2025-04-28 12:45:44 -06:00
2026-01-25 23:29:32 +00:00
2026-01-02 15:51:54 -06:00
2025-06-02 17:26:15 -06:00
2025-07-23 17:37:14 -06:00
2025-03-26 13:28:08 +02:00
2025-02-19 18:49:47 -06:00
2025-01-15 08:48:43 -06:00
2025-10-22 14:16:56 -06:00
2025-10-26 09:03:32 -06:00
2025-10-22 14:16:56 -06:00
2025-06-12 16:14:33 -06:00
2025-06-02 17:26:15 -06:00
2025-06-02 17:26:15 -06:00
2025-06-02 17:26:15 -06:00
2025-05-30 09:49:32 +01:00
2025-06-05 16:57:35 -06:00
2025-10-28 12:12:20 -06:00
2025-10-03 16:55:44 -06:00
2025-05-29 08:29:16 -06:00
2025-06-02 17:26:15 -06:00
2025-05-05 15:51:46 +02:00
2025-05-02 13:40:20 -06:00
2025-03-14 13:37:54 +02:00
2025-01-22 15:58:03 -06:00
2025-01-22 10:22:34 +01:00
2025-03-16 14:56:16 +01:00
2025-06-06 17:12:20 +08:00
2025-06-02 17:26:15 -06:00
2025-12-30 11:22:57 -06:00
2025-06-02 17:26:15 -06:00
2025-08-06 08:41:30 +02:00
2025-11-07 09:28:28 +08:00
2025-11-06 23:26:28 +01:00
2025-07-03 11:34:10 +03:00
2025-05-25 11:27:18 +02:00
2025-07-03 12:25:56 +03:00
2025-11-21 19:30:32 +01:00
2025-06-02 17:26:15 -06:00
2025-11-06 23:26:28 +01:00
2025-05-30 13:43:24 -06:00
2026-02-04 09:04:36 +01:00
2025-06-20 12:57:47 -06:00
2025-06-20 12:15:08 -06:00
2025-05-02 08:38:02 -06:00
2025-04-21 11:07:04 -06:00
2025-05-30 09:49:32 +01:00
2025-09-26 11:55:13 -06:00
2024-11-01 13:37:58 -06:00
2025-11-07 15:34:04 -06:00
2025-11-03 10:02:39 -06:00
2025-06-02 17:26:15 -06:00
2025-11-24 10:51:16 +01:00
2025-07-22 11:30:14 -06:00
2025-07-09 08:40:03 -06:00
2026-02-13 08:16:24 +01:00
2025-08-25 16:20:48 +02:00
2025-04-02 20:00:59 -06:00
2025-10-09 13:50:40 -06:00
2025-05-13 11:30:09 -06:00
2025-06-14 09:09:40 -06:00
2025-06-14 09:09:40 -06:00
2025-06-27 11:48:20 -06:00
2025-04-04 12:25:02 -06:00
2025-10-09 13:50:40 -06:00
2026-02-11 12:17:18 +02:00
2026-02-04 09:01:30 +01:00
2026-02-02 14:24:40 -06:00
2026-02-02 14:24:40 -06:00
2026-02-02 14:24:40 -06:00
2026-02-06 09:29:48 -06:00
2024-12-02 07:40:39 -06:00
2025-12-27 09:40:35 -06:00
2025-08-06 08:41:30 +02:00
2025-06-02 17:26:16 -06:00
2025-12-19 10:30:26 -06:00
2025-07-17 09:56:33 -03:00
2025-07-17 09:56:33 -03:00
2025-07-26 07:34:28 +02:00
2025-04-14 08:59:39 -06:00
2025-06-13 13:10:33 -06:00
2025-11-20 09:17:58 +01:00
2025-11-20 09:17:58 +01:00
2025-03-10 07:41:16 +01:00
2025-12-29 10:17:01 -03:00
2024-10-17 15:38:50 -06:00
2024-10-27 17:24:13 -06:00
2025-07-24 11:50:21 -06:00
2024-12-04 14:30:18 -06:00
2025-02-07 11:39:24 -06:00
2025-07-14 12:43:28 -06:00
2025-01-24 14:34:40 -06:00
2025-06-25 09:50:37 -06:00
2025-06-26 11:57:59 -06:00
2025-09-26 11:55:13 -06:00
2025-04-03 11:41:54 -06:00
2025-06-14 09:09:40 -06:00
2025-03-05 12:14:04 -06:00
2025-04-03 16:54:49 -06:00
2024-11-15 14:32:02 +01:00
2025-06-05 16:57:35 -06:00
2025-12-05 10:34:52 -06:00
2025-10-30 10:11:18 +08:00
2025-08-14 15:33:00 +08:00
2024-10-24 11:21:48 -06:00
2025-07-08 13:11:12 -06:00
2025-05-29 08:30:25 -06:00
2026-01-15 11:09:28 +01:00
2026-01-15 11:09:28 +01:00
2026-01-15 11:09:28 +01:00
2024-10-16 11:11:56 -06:00
2024-11-25 23:07:37 -03:00
2024-12-14 09:32:59 -06:00
2026-01-16 09:07:28 -06:00
2025-07-03 11:32:49 +03:00
2025-12-18 08:06:10 -06:00
2025-05-05 14:16:50 -06:00
2025-01-22 16:43:54 +01:00
2025-10-22 14:28:33 +02:00
2025-10-28 12:24:03 -06:00
2025-04-28 10:41:19 -03:00
2024-12-30 15:55:07 -06:00
2025-01-15 08:48:42 -06:00
2026-02-02 14:24:40 -06:00
2025-04-16 16:51:45 -06:00
2025-11-04 12:45:30 -03:00
2025-07-08 13:11:12 -06:00
2025-10-24 13:47:50 -06:00
2025-10-24 13:47:50 -06:00
2025-11-10 20:57:42 +08:00
2025-05-29 18:35:49 -06:00
2025-12-11 20:53:51 +08:00
2025-03-10 09:22:35 +01:00
2025-04-23 13:19:44 -06:00
2025-05-29 08:25:18 -06:00
2025-01-14 14:29:29 -06:00
2025-01-14 14:29:29 -06:00
2025-11-18 15:53:39 -06:00
2024-10-24 09:41:52 +02:00
2025-10-05 20:26:22 +02:00
2025-04-16 19:57:19 -06:00
2025-07-08 13:11:12 -06:00
2025-02-03 16:01:36 -06:00
2025-11-06 11:26:18 -06:00
2025-12-05 13:38:09 -06:00
2025-07-14 12:43:28 -06:00
2025-03-10 09:22:35 +01:00
2024-10-14 17:58:12 -06:00
2025-06-11 09:42:55 +02:00
2025-06-11 09:42:55 +02:00
2025-07-24 08:54:15 +02:00
2025-04-28 12:45:44 -06:00
2025-02-28 08:41:54 -06:00
2025-10-20 11:54:29 -06:00
2025-10-08 13:54:59 -06:00
2025-02-11 20:10:58 -06:00
2025-01-07 15:45:51 +02:00
2025-01-09 11:11:10 -06:00
2025-12-04 09:38:58 -06:00
2025-01-01 10:40:33 -06:00
2025-07-11 10:43:29 -06:00
2025-10-22 11:09:24 +02:00
2025-02-03 16:01:36 -06:00
2025-03-08 16:35:46 +02:00
2025-05-02 13:40:25 -06:00
2025-05-02 13:40:25 -06:00
2025-07-08 13:11:12 -06:00
2025-09-19 11:54:27 -06:00
2024-10-23 06:52:38 +02:00
2025-07-30 08:01:11 +02:00
2025-04-16 13:44:44 +02:00
2026-02-13 08:16:25 +01:00