Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1311340
| From | Florian Fainelli <f.fainelli@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 1/2] bmips: add BCM6358 support |
| Date | 2016-01-18 07:50 +0100 |
| Message-ID | <qSbNx-5kM-23@gated-at.bofh.it> (permalink) |
| References | <qRTGW-1Mk-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On January 17, 2016 3:28:20 AM PST, "Álvaro Fernández Rojas" <noltari@gmail.com> wrote:
>BCM6358 has a shared TLB which conflicts with current SMP support, so
>it must
>be disabled for now.
>BCM6358 uses >= 0xfff00000 addresses for internal registers, which need
>to be
>remapped (by using a simplified version of BRCM63xx ioremap.h).
>
>Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
>---
> arch/mips/bmips/setup.c | 10 +++++++++
>arch/mips/include/asm/mach-bmips/ioremap.h | 33
>++++++++++++++++++++++++++++++
> 2 files changed, 43 insertions(+)
> create mode 100644 arch/mips/include/asm/mach-bmips/ioremap.h
>
>diff --git a/arch/mips/bmips/setup.c b/arch/mips/bmips/setup.c
>index 3553528..38b5bd5 100644
>--- a/arch/mips/bmips/setup.c
>+++ b/arch/mips/bmips/setup.c
>@@ -95,6 +95,15 @@ static void bcm6328_quirks(void)
> bcm63xx_fixup_cpu1();
> }
>
>+static void bcm6358_quirks(void)
>+{
>+ /*
>+ * BCM6358 needs special handling for its shared TLB, so
>+ * disable SMP for now
>+ */
>+ bmips_smp_enabled = 0;
>+}
That part looks good.
>+
> static void bcm6368_quirks(void)
> {
> bcm63xx_fixup_cpu1();
>@@ -104,6 +113,7 @@ static const struct bmips_quirk bmips_quirk_list[]
>= {
> { "brcm,bcm3384-viper", &bcm3384_viper_quirks },
> { "brcm,bcm33843-viper", &bcm3384_viper_quirks },
> { "brcm,bcm6328", &bcm6328_quirks },
>+ { "brcm,bcm6358", &bcm6358_quirks },
> { "brcm,bcm6368", &bcm6368_quirks },
> { "brcm,bcm63168", &bcm6368_quirks },
> { },
<snip>
>+
>+static inline int is_bmips_internal_registers(phys_addr_t offset)
>+{
>+ if (offset >= 0xfff00000)
>+ return 1;
>+
>+ return 0;
That should probably be refined to be looking at the SoC/CPU you are running on, using eventually of_machine_is_compatible on the SoC-specific compatible string. For instance, on 6368 and newer, the physical register offset moves to PA 0x1000_0000.
Thanks!
--
Florian
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/2] bmips: add BCM6358 support Álvaro Fernández Rojas <noltari@gmail.com> - 2016-01-17 12:30 +0100
Re: [PATCH 1/2] bmips: add BCM6358 support Florian Fainelli <f.fainelli@gmail.com> - 2016-01-18 07:50 +0100
Re: [PATCH 1/2] bmips: add BCM6358 support Álvaro Fernández Rojas <noltari@gmail.com> - 2016-01-18 10:50 +0100
Re: [PATCH 1/2] bmips: add BCM6358 support Jonas Gorski <jogo@openwrt.org> - 2016-01-18 14:40 +0100
Re: [PATCH 1/2] bmips: add BCM6358 support Florian Fainelli <f.fainelli@gmail.com> - 2016-01-18 20:30 +0100
Re: [PATCH 1/2] bmips: add BCM6358 support Florian Fainelli <f.fainelli@gmail.com> - 2016-01-19 01:10 +0100
csiph-web