On Monday 17 November 2014 09:01:02 Kevin Cernekee wrote: > On Mon, Nov 17, 2014 at 4:16 AM, Arnd Bergmann <arnd@xxxxxxxx> wrote: > Under arch/mips/bcm47xx I see a single mach type, but different builds > for BMIPS3300 (R1/SSB) versus MIPS 74K (R2/BCMA). At least in Kconfig, the two are not mutually exclusive, so I assumed you could enable them both at the same time. > >> Outside of the CPU, the BCM63xx/BCM33xx/BCM7xxx register maps and > >> peripherals look pretty different, and the arch/mips/bmips code makes > >> almost zero assumptions about the rest of the chip if a DTB is passed > >> in from the bootloader. In this sense you can see the parallels to > >> CONFIG_ARCH_MULTI_Vx. > >> > >> Prior to this work, these product lines have never been able to share > >> a common kernel image. > > > > I still think this is different in the sense that ARM multiplatform > > support is about combining platforms from separate mach-* directories, > > while your approach was to rewrite multiple mach-* directories into > > a single new one that remains separate from the others. > > There is at least one out-of-tree kernel for each of: > > arch/mips/bcm9338x > arch/mips/bcm963xx (which predates arch/mips/bcm63xx) > arch/mips/brcmstb > > each of which was implementing and maintaining the same > CPU/SMP/cache/IRQ support a little bit differently. > > The femtocell chips (BCM61xxx) may or may not have their own tree as > well - need to check. Plus, here in mainline, we currently have an > arch/mips/bcm63xx tree supporting a different (usually older) subset > of BCM63xx chipsets. > > It would be nice if we could identify the BMIPS chips that are still > actively used, and support them all with one mach type instead of 4+. > There might still be a few special cases but I suspect that several of > the extra mach directories can be eliminated. Absolutely agreed. > > While this is > > a great improvement, it doesn't get you any closer to having a > > combined BMIPS+RALINK+JZ4740+ATH79 kernel for instance. I don't know > > if such a kernel is something that anybody wants, or if it's even > > technically possible. > > Correct, that isn't the goal for now. > > Given the differences between BMIPS and imgtec MIPS, it is possible > that making such a multiplatform kernel would be the equivalent of > making a single image that runs on ARMv5 + ARMv7. We may want to > assess the tradeoffs at some point. > > It is possible that a multiplatform BMIPS kernel may run fine on > reasonably simple non-BMIPS hardware, but that other hardware (e.g. > supporting SMP, system PM states, or more complicated caches) would > require a dedicated build. I see. > > If you wanted to do that however, starting with BMIPS you'd have > > to make it possible to define a new platform without the > > arch/mips/include/asm/mach-bmips/ directory (this should be possible > > already, so the hardest part is done), replace all global function > > calls (arch_init_irq, prom_init, get_system_type, ...) with generic > > platform-independent implementations or wrappers around per-platform > > callbacks, and move the Kconfig section for CONFIG_BMIPS_MULTIPLATFORM > > outside of the "System type" choice statement. > > Right. The other question is how much support for legacy non-DT > bootloaders really belongs in a true multiplatform kernel, as this > stuff gets hairy fast. Yes, that's why I suggested following PowerPC rather than ARM in this regard. If you move the boot loader abstraction into the decompressor instead of the platform code, you can avoid a lot of the problems. Arnd