On Thursday 05 May 2016 09:41:32 Yangbo Lu wrote: > > -----Original Message----- > > From: Arnd Bergmann [mailto:arnd@xxxxxxxx] > > Sent: Thursday, May 05, 2016 4:32 PM > > To: linuxppc-dev@xxxxxxxxxxxxxxxx > > Cc: Yangbo Lu; linux-mmc@xxxxxxxxxxxxxxx; devicetree@xxxxxxxxxxxxxxx; > > linux-arm-kernel@xxxxxxxxxxxxxxxxxxx; linux-kernel@xxxxxxxxxxxxxxx; > > linux-clk@xxxxxxxxxxxxxxx; linux-i2c@xxxxxxxxxxxxxxx; iommu@lists.linux- > > foundation.org; netdev@xxxxxxxxxxxxxxx; Mark Rutland; > > ulf.hansson@xxxxxxxxxx; Russell King; Bhupesh Sharma; Joerg Roedel; > > Santosh Shilimkar; Yang-Leo Li; Scott Wood; Rob Herring; Claudiu Manoil; > > Kumar Gala; Xiaobo Xie; Qiang Zhao > > Subject: Re: [v10, 7/7] mmc: sdhci-of-esdhc: fix host version for T4240- > > R1.0-R2.0 > > > > On Thursday 05 May 2016 11:12:30 Yangbo Lu wrote: > > > > > > + fsl_guts_init(); > > > + svr = fsl_guts_get_svr(); > > > + if (svr) { > > > + esdhc->soc_ver = SVR_SOC_VER(svr); > > > + esdhc->soc_rev = SVR_REV(svr); > > > + } else { > > > + dev_err(&pdev->dev, "Failed to get SVR value!\n"); > > > + } > > > + > > > > > > > > > Sorry for jumping in again after not participating in the discussion for > > the past few versions. > > > > What happened to my suggestion of making this a platform-independent > > interface to avoid the link time dependency? > > > > Specifically, why not add an exported function to drivers/base/soc.c that > > uses glob_match() for comparing a string in the device driver to the ID > > of the SoC that is set by whatever SoC identifying driver the platform > > has? > > [Lu Yangbo-B47093] I think this has been discussed in v6. > You can find Scott's comments about this in below link. > https://patchwork.kernel.org/patch/8544501/ Ah, thanks for bearing with me and digging this out again. Let me follow up on Scott's older replies here then: > >> IIRC, it is the same IP block as i.MX and Arnd's point is this won't > >> even compile on !PPC. It is things like this that prevent sharing the > >> driver. > > The whole point of using the MMIO SVR instead of the PPC SPR is so that > it will work on ARM... The guts driver should build on any platform as > long as OF is enabled, and if it doesn't find a node to bind to it will > return 0 for SVR, and the eSDHC driver will continue (after printing an > error that should be removed) without the ability to test for errata > based on SVR. It feels like a bad design to have to come up with a different method for each SoC type here when they all do the same thing and want to identify some variant of the chip to do device specific quirks. As far as I'm concerned, every driver in drivers/soc that needs to export a symbol to be used by a device driver is an indication that we don't have the right set of abstractions yet. There are cases that are not worth abstracting because the functionality is rather obscure and only a couple of drivers for one particular chip ever need it. Finding out the version of the SoC does not look like this case. > > I think the first four patches take care of building for ARM, > > but the problem remains if you want to enable COMPILE_TEST as > > we need for certain automated checking. > > What specific problem is there with COMPILE_TEST? COMPILE_TEST is solvable here and the way it is implemented in this case (selecting FSL_GUTS from the driver) indeed looks like it works correctly, but it's still awkward that this means building the SoC specific ID stuff into the vmlinux binary for any driver that uses something like that for a particular SoC. > >> Dealing with Si revs is a common problem. We should have a > >> common solution. There is soc_device for this purpose. > > > > Exactly. The last time this came up, I think we agreed to implement a > > helper using glob_match() on the soc_device strings. Unfortunately > > this hasn't happened then, but I'd still prefer that over yet another > > vendor-specific way of dealing with the generic issue. > > soc_device would require encoding the SVR as a string and then decoding > the string, which is more complicated and error prone than having > platform-specific code test a platform-specific number. You already need to encode it as a string to register the soc_device, and the driver just needs to pass a glob string, so the only part that is missing is the generic function that takes the string from the driver and passes that to glob_match for the soc_device. > And when would it get registered on arm64, which doesn't have > platform code? Whenever the soc driver is loaded, as is the case now. The match function can return -EPROBE_DEFER if no SoC device is registered yet. Arnd -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html