On 27 June 2017 at 08:04, KONRAD Frederic <frederic.kon...@adacore.com> wrote: > Le 06/23/2017 à 03:58 PM, Peter Maydell a écrit : >> The pointer is for your clock inputs -- when would you >> want to start a refresh from that? I would expect >> refreshes to only ever go downstream -- you update >> the config of your clock outputs and things downstream >> of them will update in turn. > > > I started with the goal in mind that the binding + the callback > can refresh themself without user intervention. > > So actually the user only have to change the binding in case of a > clock selector.. Everything else is done by the framework.
I agree you only need to change the bindings for clock selectors, that should be true whatever approach we take. > For example if we want to change a multiplier through a register: > > void register_write(..) > { > /* Refresh related clock input. */ > } > > void clock_cb(..) > { > return register_value * rate_in; > } > > If we drop the clock first possibility: > > void register_write(..) > { > /* refresh all depending clock with > * rate_in * register value. > * Either this can be tricky as we need to know exactly which > * clock need to be refreshed or we need to refresh everybody. > * On the device example in the patch-set this can become a > * mess. > */ > } > > void clock_cb(..) > { > return register_value * rate_in; > } > > Second possibility: > > void register_write(..) > { > /* refresh the clock which is referenced as input. > * This is easy BUT it will refresh all other devices bound to > * this clock. > */ If this device can change the multiplier for a clock then it must be changing the multiplier for one of its *output* clocks. The input clock is owned by whatever device controls that clock. (In hardware, a device can't change the frequency of a clock signal that is an input to it.) Eg you might have a fixed clock (output) representing the system clock, and a PLL device which takes that clock as an input, and has one or more output clocks at various rates whose multipliers can be changed. Changing the multiplier value in a register in the PLL device should make it change and refresh the relevant output clock. (If a device has a builtin clock divider then you'd model that as it having an input clock, plus an "output" clock which it doesn't actually expose to the rest of the world but just consumes internally. The builtin divider would change the settings on the 'output' clock.) thanks -- PMM