Re: [PATCH 1/2] spi: Add Renesas R-Car RPC SPI controller driver

From: Marek Vasut
Date: Tue Nov 20 2018 - 08:09:13 EST


On 11/20/2018 08:23 AM, masonccyang@xxxxxxxxxxx wrote:
> Hi Marek,

Hi,

>> Marek Vasut <marek.vasut@xxxxxxxxx>
>> 2018/11/19 äå 10:12
>>
>> To
>>
>> > +
>> > +static int rpc_spi_set_freq(struct rpc_spi *rpc, unsigned long freq)
>> > +{
>> > + Â int ret;
>> > +
>> > + Â if (rpc->cur_speed_hz == freq)
>> > + Â Â Âreturn 0;
>> > +
>> > + Â clk_disable_unprepare(rpc->clk_rpc);
>> > + Â ret = clk_set_rate(rpc->clk_rpc, freq);
>> > + Â if (ret)
>> > + Â Â Âreturn ret;
>> > +
>> > + Â ret = clk_prepare_enable(rpc->clk_rpc);
>> > + Â if (ret)
>> > + Â Â Âreturn ret;
>>
>> Is this clock disable/update/enable really needed ? I'd think that
>> clk_set_rate() would handle the rate update correctly.
>
> This is for run time PM mechanism in spi-mem layer and __spi_sync(),
> you may refer to another patch [1].
>
> [1]
> https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git/commit/?h=for-4.21&id=b942d80b0a394e8ea18fce3b032b4700439e8ca3

I think Geert commented on the clock topic, so let's move it there.
Disabling and enabling clock to change their rate looks real odd to me.

>> > + Â rpc->cur_speed_hz = freq;
>> > + Â return ret;
>> > +}
>> > +
>> > +static void rpc_spi_hw_init(struct rpc_spi *rpc)
>> > +{
>> > + Â /*
>> > + Â Â* NOTE: The 0x260 are undocumented bits, but they must be set.
>> > + Â Â*/
>>
>> FYI:
>>
> http://git.denx.de/?p=u-boot.git;a=blob;f=drivers/spi/renesas_rpc_spi.c#l207
>>
>> I think the STRTIM should be 6 .
>>
>
> In my D3 Draak board, the STRTIM is 0x3 for on board qspi flash and
> mx25uw51245g.
> And this is also refer to Renesas R-Car Gen3 bare-metal code,
> mini-monitor v4.01.

The copy of minimon I have says 6 , but maybe this is flash specific ?

[...]

>> > + Â Â Â Â writel(rpc->cmd, rpc->regs + RPC_SMCMR);
>> > + Â Â Â Â writel(rpc->dummy, rpc->regs + RPC_SMDMCR);
>> > + Â Â Â Â writel(rpc->addr + pos, rpc->regs + RPC_SMADR);
>> > + Â Â Â Â writel(rpc->smenr, rpc->regs + RPC_SMENR);
>> > + Â Â Â Â writel(rpc->smcr | RPC_SMCR_SPIE, rpc->regs + RPC_SMCR);
>> > + Â Â Â Â ret = wait_msg_xfer_end(rpc);
>> > + Â Â Â Â if (ret)
>> > + Â Â Â Â Â Âgoto out;
>> > +
>> > + Â Â Â Â data = readl(rpc->regs + RPC_SMRDR0);
>> > + Â Â Â Â memcpy_fromio(rx_buf + pos, (void *)&data, nbytes);
>> > + Â Â Â Â pos += nbytes;
>> > + Â Â Â}
>> > + Â } else {
>> > + Â Â Âwritel(rpc->cmd, rpc->regs + RPC_SMCMR);
>> > + Â Â Âwritel(rpc->dummy, rpc->regs + RPC_SMDMCR);
>> > + Â Â Âwritel(rpc->addr + pos, rpc->regs + RPC_SMADR);
>> > + Â Â Âwritel(rpc->smenr, rpc->regs + RPC_SMENR);
>> > + Â Â Âwritel(rpc->smcr | RPC_SMCR_SPIE, rpc->regs + RPC_SMCR);
>> > + Â Â Âret = wait_msg_xfer_end(rpc);
>> > + Â }
>> > +out:
>>
>> Dont you need to stop the RPC somehow in case the transmission fails ?
>
> It seems there is no any RPC registers bit to monitor xfer fail !

What happens if wait_msg_xfer_end() returns non-zero ? I guess that
means the transfer timed out ?

[...]

>> > +static const struct of_device_id rpc_spi_of_ids[] = {
>> > + Â { .compatible = "renesas,rpc-r8a77995", },
>> > + Â { /* sentinel */ }
>> > +};
>> > +MODULE_DEVICE_TABLE(of, rpc_spi_of_ids);
>> > +
>> > +static struct platform_driver rpc_spi_driver = {
>> > + Â .probe = rpc_spi_probe,
>> > + Â .remove = rpc_spi_remove,
>> > + Â .driver = {
>> > + Â Â Â.name = "rpc-spi",
>> > + Â Â Â.of_match_table = rpc_spi_of_ids,
>> > + Â Â Â.pm = &rpc_spi_dev_pm_ops,
>> > + Â },
>> > +};
>> > +module_platform_driver(rpc_spi_driver);
>> > +
>> > +MODULE_AUTHOR("Mason Yang <masonccyang@xxxxxxxxxxx>");
>> > +MODULE_DESCRIPTION("Renesas R-Car D3 RPC SPI controller driver");
>>
>> This is not D3 specific and not SPI-only controller btw.
>
> In R-Car Gen3, there are some registers(i.e,. RPC_PHYCNT) in different
> setting
> for R-Car H3, M3-W, V3M, V3H, D3, M3-N and E3 model.
>
> I test this patch is based on D3 Draak board, it works fine but I am not
> sure
> if these registers setting is ok for others R-Card model.
>
> I think this could be a reference when patch others Gen3 model is needed.
You can take a look into the U-Boot driver(s) I linked, that's used on
the other SoCs you listed (except for V3H).

--
Best regards,
Marek Vasut