upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
500 B
30 lines
500 B
/*
|
|
* Copyright (C) 2016 Imagination Technologies
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
|
#include <asm/mipsregs.h>
|
|
|
|
#include "boston-lcd.h"
|
|
#include "boston-regs.h"
|
|
|
|
int checkboard(void)
|
|
{
|
|
u32 changelist;
|
|
|
|
lowlevel_display("U-boot ");
|
|
|
|
printf("Board: MIPS Boston\n");
|
|
|
|
printf("CPU: 0x%08x", read_c0_prid());
|
|
changelist = __raw_readl((uint32_t *)BOSTON_PLAT_CORE_CL);
|
|
if (changelist > 1)
|
|
printf(" cl%x", changelist);
|
|
putc('\n');
|
|
|
|
return 0;
|
|
}
|
|
|