Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dpll: zl3073x: Add support for mux pin type

Add parsing for the "mux" string in the 'connection-type' pin property
mapping it to DPLL_PIN_TYPE_MUX.

Recognizing this type in the driver allows these pins to be taken as
parent pins for pin-on-pin pins coming from different modules (e.g.
network drivers).

Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Signed-off-by: Ivan Vecera <ivecera@redhat.com>
Reviewed-by: Arkadiusz Kubalewski <arkadiusz.kubalewski@intel.com>
Link: https://patch.msgid.link/20260203174002.705176-6-ivecera@redhat.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>

authored by

Ivan Vecera and committed by
Paolo Abeni
fdad05ed 711696b3

+2
+2
drivers/dpll/zl3073x/prop.c
··· 249 249 props->dpll_props.type = DPLL_PIN_TYPE_INT_OSCILLATOR; 250 250 else if (!strcmp(type, "synce")) 251 251 props->dpll_props.type = DPLL_PIN_TYPE_SYNCE_ETH_PORT; 252 + else if (!strcmp(type, "mux")) 253 + props->dpll_props.type = DPLL_PIN_TYPE_MUX; 252 254 else 253 255 dev_warn(zldev->dev, 254 256 "Unknown or unsupported pin type '%s'\n",