From: netdev-bot+sashiko@kernel.org
To: arouhi@sitime.com
Cc: jiri@resnulli.us, vadim.fedorenko@linux.dev,
arkadiusz.kubalewski@intel.com, ivecera@redhat.com,
robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
cjubran@nvidia.com, pabeni@redhat.com,
Oleg.Zadorozhnyi@devoxsoftware.com, devicetree@vger.kernel.org,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
kuba@kernel.org
Subject: Re: [PATCH net-next v9 04/15] dpll: sit9531x: read DPLL types and pin properties from system firmware
Date: Thu, 17 Sep 2026 15:01:45 +0000 [thread overview]
Message-ID: <178965730512.22033.11703081345956900673@kernel.org> (raw)
In-Reply-To: <20260915000015.80480-5-arouhi@sitime.com>
Thank you for your contribution! Sashiko AI review found 4 potential
issue(s) to consider:
Critical: 0 · High: 0 · Medium: 3 · Low: 1
- [Medium] In `sit9531x_pin_props_get()` (drivers/dpll/sit9531x/prop.c,
output branch) every output pin is advertised to the DPLL core with…
- [Medium] `sit9531x_pin_props_get()` (drivers/dpll/sit9531x/prop.c)
reinterprets the first entry of the DT property `supported-…
- [Medium] `sit9531x_prop_pin_package_label_set()` builds the DPLL
package label for outputs as `snprintf(..., "OUT%u", id)` from the…
- [Low] In `sit9531x_pin_props_get()` the firmware frequency is held in
`u64 curr_freq` (assigned `curr_freq = freqs[0]` straight from…
--
dpll: sit9531x: read DPLL types and pin properties from system firmware
This patch adds prop.c, which builds the per-pin dpll_pin_properties
(package label, type, capabilities, supported frequencies) and the per-channel
DPLL type from the firmware node, with defaults when the node is absent. It
also adds the per-input and per-output runtime state arrays to struct
sit9531x_dev.
A few questions about the property parsing below.
> diff --git a/drivers/dpll/sit9531x/core.h b/drivers/dpll/sit9531x/core.h
> index 76a2632f0ce4a..230b21b9e2381 100644
> --- a/drivers/dpll/sit9531x/core.h
> +++ b/drivers/dpll/sit9531x/core.h
[ ... ]
> @@ -41,6 +51,39 @@ struct sit9531x_chip_info {
> const u8 *clkout_map;
> };
>
> +/*
> + * struct sit9531x_ref - input reference state
> + * @freq: configured frequency in Hz
> + * @label: board label from DT or default
> + * @sig_mode: signal mode of the pair this lane belongs to
> + * (detected from CLKINx_INPUT_MODE at probe)
> + */
> +struct sit9531x_ref {
> + u32 freq;
> + const char *label;
> + enum sit9531x_signal_mode sig_mode;
> +};
> +
> +/*
> + * struct sit9531x_out - output state
> + * @freq: configured frequency in Hz
> + * @label: board label from DT or default
> + */
> +struct sit9531x_out {
> + u32 freq;
> + const char *label;
> +};
> +
[ ... ]
> diff --git a/drivers/dpll/sit9531x/prop.c b/drivers/dpll/sit9531x/prop.c
> new file mode 100644
> index 0000000000000..c9642b702c4ab
> --- /dev/null
> +++ b/drivers/dpll/sit9531x/prop.c
> @@ -0,0 +1,437 @@
[ ... ]
> + if (dir == DPLL_PIN_DIRECTION_INPUT)
> + sit9531x_input_pin_label(sitdev, props, id);
> + else
> + snprintf(props->package_label, sizeof(props->package_label),
> + "OUT%u", id);
[Severity: Medium]
Should the output label go through sitdev->info->clkout_map[] rather than the
logical index?
drivers/dpll/sit9531x/core.c has a non-identity map for one variant:
static const u8 clkout_map_95317[] = {0, 3, 4, 5, 7, 8, 9, 11};
and core.h documents it as "@clkout_map: per-output slot mapping (output
index -> physical slot)", with sit9531x_output_divo_write() using it for the
actual register access. On SiT95317 that makes logical index 1 program
physical slot 3, but userspace is shown DPLL_A_PIN_PACKAGE_LABEL "OUT1", and
"OUT10"/"OUT11" are never emitted even though those chip pins exist.
The same logical index is used as the firmware lookup key in
sit9531x_prop_pin_fwnode_get():
if (fwnode_property_read_u32(pin_node, "reg", ®))
continue;
if (id == reg)
break;
while Documentation/devicetree/bindings/dpll/dpll-pin.yaml describes reg as
"Hardware index of the DPLL pin". A board DT written against the binding
(pin@3, pin@7, pin@b) then matches nothing, and pin@1 has its label,
connection-type, esync-control and frequency list applied to physical slot 3.
Should prop.c translate through clkout_map, or should the sitime binding
state that reg is a logical, variant-dependent index?
[ ... ]
> + } else {
> + /*
> + * A synthesized clock output is an external connection with
> + * no more specific meaning; a board that knows better says
> + * so through the pin's connection-type property below.
> + */
> + props->dpll_props.type = DPLL_PIN_TYPE_EXT;
> + props->dpll_props.capabilities =
> + DPLL_PIN_CAPABILITIES_STATE_CAN_CHANGE;
> + curr_freq = sitdev->out[index].freq;
> +
> + /*
> + * Allow phase-adjust over a +/-1 ms window. The subsystem
> + * rejects pin_set(phase-adjust, X) when X falls outside
> + * [min, max], so leaving these at 0 silently blocks every
> + * netlink call. 1 ms is well beyond the DCO dynamic range
> + * but costs nothing. Only outputs get a range: input pins
> + * have no .phase_adjust_set, and advertising one there would
> + * promise userspace something every set would refuse.
> + */
> + props->dpll_props.phase_range.min = -1000000000; /* -1 ms in ps */
> + props->dpll_props.phase_range.max = 1000000000; /* +1 ms in ps */
> + /*
> + * The fine step is 30 ps, but requests are accepted at 1 ps
> + * resolution and rounded to the nearest achievable delay, so
> + * advertise the request granularity, not the hardware step.
> + */
> + props->dpll_props.phase_gran = 1;
> + }
[Severity: Medium]
Can these advertised values mislead userspace, given they are uAPI once
released?
dpll_pin_phase_adj_set() in drivers/dpll/dpll_netlink.c validates a request
only against the driver-supplied range and granularity:
if (phase_adj > pin->prop.phase_range.max ||
phase_adj < pin->prop.phase_range.min) {
So every integer-picosecond request up to 1 ms is accepted, and
sit9531x_output_phase_adjust_set() then folds an offset larger than one
output period back into a single period and rounds to the 30 ps step. A
request of 500000 ps on a 1 GHz output is applied as a few hundred ps and
phase_adjust_get() reports that different value back.
Documentation/netlink/specs/dpll.yaml describes
DPLL_A_PIN_PHASE_ADJUST_GRAN as "The value of phase adjustment must be a
multiple of this granularity", so is phase_gran = 1 the right thing to
publish when the real step is 30 ps?
Related, further down in the same function:
if (dir == DPLL_PIN_DIRECTION_OUTPUT && num_freqs == 0) {
ranges[j].min = 1;
ranges[j].max = 1000000000ULL; /* 1 GHz */
For an output whose firmware node lists no supported-frequencies-hz this
claims 1 Hz to 1 GHz and effectively disables the core-side frequency_set
validation, so the advertised capability follows DT completeness rather than
the silicon. For comparison, zl3073x derives phase_gran from the synth rate
and filters DT frequencies through zl3073x_pin_check_freq(). The commit
message does not mention either the phase-adjust window or this fallback
range; could it describe them?
[ ... ]
> + /*
> + * Seed the runtime ref->freq / out->freq with the first DT-listed
> + * supported frequency so the netlink frequency_get callback reports
> + * a sane initial value before any pin_set occurs. DT lists the
> + * physically-wired reference frequency for each input pin and the
> + * default output frequency for each output pin.
> + */
> + if (num_freqs > 0) {
> + if (dir != DPLL_PIN_DIRECTION_INPUT ||
> + index != SIT9531X_MAX_INPUTS)
> + curr_freq = freqs[0];
> + }
[Severity: Medium]
Is element 0 of supported-frequencies-hz allowed to mean "current
frequency"?
Documentation/devicetree/bindings/dpll/dpll-pin.yaml defines the property as:
supported-frequencies-hz:
description: List of supported frequencies for this pin, expressed in Hz.
with no special meaning for the first entry. The other consumer of the same
binding, drivers/dpll/zl3073x/prop.c, reads curr_freq from the hardware and
uses the DT list only to build freq_supported:
/* Start with current frequency at index 0 */
ranges[0] = (struct dpll_pin_frequency)DPLL_PIN_FREQUENCY(curr_freq);
For a board that legitimately lists several supported frequencies, this
invents a current rate. The cached value is then reported verbatim by
sit9531x_dpll_input_pin_frequency_get() and used as the output period in
sit9531x_output_phase_adjust_set() ("freq = sitdev->out[out_idx].freq;"), so
a seeded rate that differs from what the chip is generating yields a wrong
programmed delay.
> +skip_fwnode_props:
[ ... ]
> + /*
> + * Publish the seeded rate only once the pin is certain to be built.
> + * The allocation above is the last thing that can fail, and a call
> + * that reports failure must not leave the device's cached rate
> + * changed behind it.
> + */
> + if (curr_freq) {
> + if (dir == DPLL_PIN_DIRECTION_INPUT)
> + sitdev->ref[index].freq = curr_freq;
> + else
> + sitdev->out[index].freq = curr_freq;
> + }
[Severity: Low]
Does this truncate curr_freq?
curr_freq is a u64 taken straight from fwnode_property_read_u64_array() and
published at full width through DPLL_PIN_FREQUENCY(), but sit9531x_ref.freq
and sit9531x_out.freq are u32 in core.h. A firmware entry of 2^32 Hz or more
is stored truncated while the advertised freq_supported entry keeps the full
value, so the cached rate matches nothing in the advertised set; an exact
multiple of 2^32 caches as 0, which also affects the period used by
sit9531x_output_phase_adjust_set().
zl3073x_pin_props_get() runs every DT entry through
zl3073x_pin_check_freq(); would a similar bound check fit here?
> +
> + j = 0;
[ ... ]
> + if (dir == DPLL_PIN_DIRECTION_OUTPUT && num_freqs == 0) {
> + ranges[j].min = 1;
> + ranges[j].max = 1000000000ULL; /* 1 GHz */
> + j++;
> + }
[ ... ]
--
Sashiko AI review · https://netdev-ai.bots.linux.dev/sashiko/#/patchset/20260915000015.80480-1-arouhi%40sitime.com
next prev parent reply other threads:[~2026-09-17 15:01 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-15 0:00 [PATCH net-next v9 00/15] dpll: add SiTime SiT9531x DPLL clock driver Ali Rouhi
2026-09-15 0:00 ` [PATCH net-next v9 01/15] dt-bindings: vendor-prefixes: add SiTime Corporation Ali Rouhi
2026-09-15 0:00 ` [PATCH net-next v9 02/15] dt-bindings: dpll: add SiTime SiT95316 clock generator Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 03/15] dpll: add basic SiTime SiT9531x support Ali Rouhi
2026-09-17 8:42 ` Ivan Vecera
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 04/15] dpll: sit9531x: read DPLL types and pin properties from system firmware Ali Rouhi
2026-09-17 9:42 ` Ivan Vecera
2026-09-17 15:01 ` netdev-bot+sashiko [this message]
2026-09-15 0:00 ` [PATCH net-next v9 05/15] dpll: sit9531x: register DPLL devices and pins Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 06/15] dpll: sit9531x: implement input pin state on a DPLL Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 07/15] dpll: sit9531x: add support to get and set priority on input pins Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 08/15] dpll: sit9531x: add support to get and set frequency on pins Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 09/15] dpll: sit9531x: implement output pin state on a DPLL Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 10/15] dpll: sit9531x: add support to adjust output phase Ali Rouhi
2026-09-17 9:55 ` Ivan Vecera
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 11/15] dpll: sit9531x: add support to get and set esync on pins Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 12/15] dpll: sit9531x: add support to get phase offset on the connected input pin Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 14/15] dpll: sit9531x: model the inter-PLL sync net as a pair of pins Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 13/15] dpll: sit9531x: add support to get fractional frequency offset Ali Rouhi
2026-09-17 15:01 ` netdev-bot+sashiko
2026-09-15 0:00 ` [PATCH net-next v9 15/15] dpll: sit9531x: allow the device tree to override two board facts Ali Rouhi
2026-09-17 15:02 ` netdev-bot+sashiko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178965730512.22033.11703081345956900673@kernel.org \
--to=netdev-bot+sashiko@kernel.org \
--cc=Oleg.Zadorozhnyi@devoxsoftware.com \
--cc=arkadiusz.kubalewski@intel.com \
--cc=arouhi@sitime.com \
--cc=cjubran@nvidia.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=ivecera@redhat.com \
--cc=jiri@resnulli.us \
--cc=krzk+dt@kernel.org \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=robh@kernel.org \
--cc=vadim.fedorenko@linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®