On Fri, Mar 17, 2023 at 04:29:50PM +0800, Yinbo Zhu wrote:
+static int loongson_spi_update_state(struct loongson_spi *loongson_spi,...
+ struct spi_device *spi, struct spi_transfer *t)
+{
+ loongson_spi->hz = hz;This is writing to general chip registers, apparently not per chip
+ loongson_spi->spcr = div_tmp & 3;
+ loongson_spi->sper = (div_tmp >> 2) & 3;
+ val = loongson_spi_read_reg(loongson_spi, LOONGSON_SPI_SPCR_REG);
select ones.
I think add spin_lock in transfer_one interface that should be to fix this issue, Do you think so?
+static int loongson_spi_setup(struct spi_device *spi)As IIRC I mentioned last time setup() might be called while other
+{
+ struct loongson_spi *loongson_spi;
+ spin_lock(&loongson_spi->lock);
+ loongson_spi_update_state(loongson_spi, spi, NULL);
transfers are happening and therefore shouldn't affect parallel
operations on other devices.
okay, I will do it.
+static const struct of_device_id loongson_spi_id_table[] = {Again as I said last time the two buses should probably be separate
+ { .compatible = "loongson,ls2k-spi", },
+ { }
+};
+MODULE_DEVICE_TABLE(of, loongson_spi_id_table);
+
+static struct platform_driver loongson_spi_driver = {
+ .probe = loongson_spi_platform_probe,
+ .driver = {
+ .name = "loongson-spi",
+ .owner = THIS_MODULE,
+ .bus = &platform_bus_type,
+ .pm = &loongson_spi_dev_pm_ops,
+ .of_match_table = loongson_spi_id_table,
+ },
+};
+
+#ifdef CONFIG_PCI
+static int loongson_spi_pci_register(struct pci_dev *pdev,
+ const struct pci_device_id *ent)
modules.
Otherwise this looks fine.