• Vladimir Oltean's avatar
    net: dsa: sja1105: properly power down the microcontroller clock for SJA1110 · cb5a82d2
    Vladimir Oltean authored
    It turns out that powering down the BASE_TIMER_CLK does not turn off the
    microcontroller, just its timers, including the one for the watchdog.
    So the embedded microcontroller is still running, and potentially still
    doing things.
    
    To prevent unwanted interference, we should power down the BASE_MCSS_CLK
    as well (MCSS = microcontroller subsystem).
    
    The trouble is that currently we turn off the BASE_TIMER_CLK for SJA1110
    from the .clocking_setup() method, mostly because this is a Clock
    Generation Unit (CGU) setting which was traditionally configured in that
    method for SJA1105. But in SJA1105, the CGU was used for bringing up the
    port clocks at the proper speeds, and in SJA1110 it's not (but rather
    for initial configuration), so it's best that we rebrand the
    sja1110_clocking_setup() method into what it really is - an implementation
    of the .disable_microcontroller() method.
    
    Since disabling the microcontroller only needs to be done once, at probe
    time, we can choose the best place to do that as being in sja1105_setup(),
    before we upload the static config to the device. This guarantees that
    the static config being used by the switch afterwards is really ours.
    
    Note that the procedure to upload a static config necessarily resets the
    switch. This already did not reset the microcontroller, only the switch
    core, so since the .disable_microcontroller() method is guaranteed to be
    called by that point, if it's disabled, it remains disabled. Add a
    comment to make that clear.
    
    With the code movement for SJA1110 from .clocking_setup() to
    .disable_microcontroller(), both methods are optional and are guarded by
    "if" conditions.
    
    Tested by enabling in the device tree the rev-mii switch port 0 that
    goes towards the microcontroller, and flashing a firmware that would
    have networking. Without this patch, the microcontroller can be pinged,
    with this patch it cannot.
    Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    cb5a82d2
sja1105_spi.c 32.7 KB