Skip to content

Commit

Permalink
bcm63xx: lzma-loader: rely on CHIP_ID for UART address
Browse files Browse the repository at this point in the history
lzma-loader uart output wasn't working on BCM3380/BCM6362 because these
SoCs have the same processor ID.
Let's use CHIP_ID for establishing the UART base address.

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
  • Loading branch information
Noltari committed May 20, 2020
1 parent 8e8920c commit c93cdf5
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 83 deletions.
3 changes: 2 additions & 1 deletion target/linux/bcm63xx/image/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ LOADER_MAKEOPTS= \
KDIR=$(KDIR) \
LOADADDR=$(KERNEL_LOADADDR) \
RAMSIZE=$(RAMSIZE) \
LZMA_TEXT_START=$(LZMA_TEXT_START)
LZMA_TEXT_START=$(LZMA_TEXT_START) \
CHIP_ID=$(CHIP_ID)

RELOCATE_MAKEOPTS= \
CACHELINE_SIZE=16 \
Expand Down
22 changes: 22 additions & 0 deletions target/linux/bcm63xx/image/lzma-loader/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#
# Copyright (C) 2020 Álvaro Fernández Rojas <noltari@gmail.com>
# Copyright (C) 2014 Jonas Gorski <jogo@openwrt.org>
# Copyright (C) 2011 OpenWrt.org
# Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
#
Expand All @@ -14,6 +16,25 @@ LOADER_NAME := $(basename $(notdir $(LOADER)))
LOADER_DATA :=
TARGET_DIR :=

UART_BASE_3329 := 0xb0000100
UART_BASE_3368 := 0xfff8c100
UART_BASE_3380 := 0xb4e00200
UART_BASE_3383 := 0xb4e00500
UART_BASE_3384 := 0xb4e00500
UART_BASE_6318 := 0xb0000100
UART_BASE_6328 := 0xb0000100
UART_BASE_6338 := 0xfffe0300
UART_BASE_6345 := 0xfffe0300
UART_BASE_6348 := 0xfffe0300
UART_BASE_6358 := 0xfffe0100
UART_BASE_6362 := 0xb0000100
UART_BASE_6368 := 0xb0000100
UART_BASE_63268 := 0xb0000180
UART_BASE_6816 := 0xb0000100
UART_BASE_6818 := 0xb0000100
UART_BASE_6828 := 0xb0000180
UART_BASE := $(if $(UART_BASE_$(CHIP_ID)),$(UART_BASE_$(CHIP_ID)),0)

ifeq ($(TARGET_DIR),)
TARGET_DIR := $(KDIR)
endif
Expand All @@ -35,6 +56,7 @@ loader-compile: $(PKG_BUILD_DIR)/.prepared
$(MAKE) -C $(PKG_BUILD_DIR) CROSS_COMPILE="$(TARGET_CROSS)" \
LZMA_TEXT_START=$(LZMA_TEXT_START) \
LOADER_DATA=$(LOADER_DATA) \
UART_BASE=$(UART_BASE) \
clean all

loader.elf: $(PKG_BUILD_DIR)/loader.elf
Expand Down
6 changes: 3 additions & 3 deletions target/linux/bcm63xx/image/lzma-loader/src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
# Makefile for the LZMA compressed kernel loader for
# Atheros AR7XXX/AR9XXX based boards
#
# Copyright (C) 2020 Álvaro Fernández Rojas <noltari@gmail.com>
# Copyright (C) 2014 Jonas Gorski <jogo@openwrt.org>
# Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
#
# Some parts of this file was based on the OpenWrt specific lzma-loader
Expand Down Expand Up @@ -34,6 +36,7 @@ CFLAGS = -D__KERNEL__ -Wall -Wstrict-prototypes -Wno-trigraphs -Os \
-mabi=32 -march=mips32 \
-Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap
CFLAGS += -D_LZMA_PROB32
CFLAGS += -DUART_BASE=$(UART_BASE)

ASFLAGS = $(CFLAGS) -D__ASSEMBLY__

Expand Down Expand Up @@ -82,6 +85,3 @@ mrproper: clean

clean:
rm -f loader *.elf *.bin *.o



79 changes: 4 additions & 75 deletions target/linux/bcm63xx/image/lzma-loader/src/board.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
* BCM63XX specific implementation parts
*
* Copyright (C) 2020 Álvaro Fernández Rojas <noltari@gmail.com>
* Copyright (C) 2014 Jonas Gorski <jogo@openwrt.org>
*
* This program is free software; you can redistribute it and/or modify it
Expand All @@ -10,102 +11,30 @@

#include <stddef.h>
#include "config.h"
#include "cp0regdef.h"

#define READREG(r) *(volatile unsigned int *)(r)
#define WRITEREG(r,v) *(volatile unsigned int *)(r) = v

#define UART_IR_REG 0x10
#define UART_FIFO_REG 0x14

unsigned long uart_base;

static void wait_xfered(void)
{
unsigned int val;

do {
val = READREG(uart_base + UART_IR_REG);
val = READREG(UART_BASE + UART_IR_REG);
if (val & (1 << 5))
break;
} while (1);
}

void board_putc(int ch)
{
if (!uart_base)
if (!UART_BASE)
return;

wait_xfered();
WRITEREG(uart_base + UART_FIFO_REG, ch);
WRITEREG(UART_BASE + UART_FIFO_REG, ch);
wait_xfered();
}

#define PRID_IMP_BMIPS32_REV4 0x4000
#define PRID_IMP_BMIPS32_REV8 0x8000
#define PRID_IMP_BMIPS3300 0x9000
#define PRID_IMP_BMIPS3300_ALT 0x9100
#define PRID_IMP_BMIPS3300_BUG 0x0000
#define PRID_IMP_BMIPS43XX 0xa000

void board_init(void)
{
unsigned long prid, chipid, chipid_reg;

prid = read_32bit_c0_register($15, 0);

switch (prid & 0xff00) {
case PRID_IMP_BMIPS32_REV4:
case PRID_IMP_BMIPS32_REV8:
case PRID_IMP_BMIPS3300_ALT:
case PRID_IMP_BMIPS3300_BUG:
chipid_reg = 0xfffe0000;
break;
case PRID_IMP_BMIPS3300:
if ((prid & 0xff) >= 0x33)
chipid_reg = 0xb0000000;
else
chipid_reg = 0xfffe0000;
break;
case PRID_IMP_BMIPS43XX:
if ((prid & 0xff) == 0x04)
chipid_reg = 0xfff8c000;
else if ((prid & 0xff) == 0x70)
return; /* FIXME: 0002a070 can be 6362 and 3380 */
else if ((prid & 0xff) >= 0x30)
chipid_reg = 0xb0000000;
else
chipid_reg = 0xfffe0000;
break;
default:
return;
}

chipid = READREG(chipid_reg);

switch (chipid >> 16) {
case 0x3368:
case 0x6318:
case 0x6328:
case 0x6358:
case 0x6362:
case 0x6368:
case 0x6369:
uart_base = chipid_reg + 0x100;
break;
case 0x6316:
case 0x6326:
uart_base = chipid_reg + 0x180;
break;
case 0x3380:
uart_base = chipid_reg + 0x200;
break;
case 0x6338:
case 0x6345:
case 0x6348:
uart_base = chipid_reg + 0x300;
break;
default:
return;
}
}
5 changes: 1 addition & 4 deletions target/linux/bcm63xx/image/lzma-loader/src/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@
extern unsigned char workspace[];


extern void board_init(void);

static CLzmaDecoderState lzma_state;
static unsigned char *lzma_data;
static unsigned long lzma_datasize;
Expand Down Expand Up @@ -135,11 +133,10 @@ void loader_main(unsigned long reg_a0, unsigned long reg_a1,
unsigned long);
int res;

board_init();

printf("\n\nOpenWrt kernel loader for BCM63XX\n");
printf("Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>\n");
printf("Copyright (C) 2014 Jonas Gorski <jogo@openwrt.org>\n");
printf("Copyright (C) 2020 Alvaro Fernandez Rojas <noltari@gmail.com>\n");

lzma_init_data();

Expand Down

0 comments on commit c93cdf5

Please sign in to comment.