Not yet, also my patches for the kernel are based on yours, so maybe you should submit them, since you were the first one to implement the support.
BTW, I boot tested bmips on BCM3380 with the following changes:
https://github.com/openwrt-es/openwrt/commit/3c72e4dc2b2bf21f3b1a7ef412fdb60753febae1
https://github.com/openwrt-es/openwrt/commits/bmips-4.1
But I have to say it's painfully slow, because it takes like 150s to fully boot on 1 CPU and 400+ on 2CPU :/.

And about bmips target, Jonas wants to add it as a brcm63xx subtarget in the future.

Regards,
Álvaro.

El 09/10/2015 a las 22:38, Florian Fainelli escribió:
On 09/10/15 13:29, Álvaro Fernández Rojas wrote:
Signed-off-by: Álvaro Fernández Rojas <nolt...@gmail.com>
That is a first step, but there are additional kernel changes required
to boot on 3380, are you also going to submit these?

---
  target/linux/brcm63xx/image/lzma-loader/src/board.c | 5 +++++
  1 file changed, 5 insertions(+)

diff --git a/target/linux/brcm63xx/image/lzma-loader/src/board.c 
b/target/linux/brcm63xx/image/lzma-loader/src/board.c
index 46af525..28b9c53 100644
--- a/target/linux/brcm63xx/image/lzma-loader/src/board.c
+++ b/target/linux/brcm63xx/image/lzma-loader/src/board.c
@@ -70,6 +70,8 @@ void board_init(void)
        case PRID_IMP_BMIPS43XX:
                if ((prid & 0xff) == 0x04)
                        chipid_reg = 0xfff8c000;
+               else if ((prid & 0xff) == 0x70)
+                       chipid_reg = 0xb4e00000;
                else if ((prid & 0xff) >= 0x30)
                        chipid_reg = 0xb0000000;
                else
@@ -95,6 +97,9 @@ void board_init(void)
        case 0x6326:
                uart_base = chipid_reg + 0x180;
                break;
+       case 0x3380:
+               uart_base = chipid_reg + 0x200;
+               break;
        case 0x6338:
        case 0x6345:
        case 0x6348:

_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Reply via email to