mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
229 lines
4.6 KiB
C
229 lines
4.6 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
|
|
* Copyright (C) 2013 Imagination Technologies
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <ide.h>
|
|
#include <netdev.h>
|
|
#include <pci.h>
|
|
#include <pci_gt64120.h>
|
|
#include <pci_msc01.h>
|
|
#include <rtc.h>
|
|
|
|
#include <asm/addrspace.h>
|
|
#include <asm/io.h>
|
|
#include <asm/malta.h>
|
|
|
|
#include "superio.h"
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
enum core_card {
|
|
CORE_UNKNOWN,
|
|
CORE_LV,
|
|
CORE_FPGA6,
|
|
};
|
|
|
|
enum sys_con {
|
|
SYSCON_UNKNOWN,
|
|
SYSCON_GT64120,
|
|
SYSCON_MSC01,
|
|
};
|
|
|
|
static void malta_lcd_puts(const char *str)
|
|
{
|
|
int i;
|
|
void *reg = (void *)CKSEG1ADDR(MALTA_ASCIIPOS0);
|
|
|
|
/* print up to 8 characters of the string */
|
|
for (i = 0; i < min((int)strlen(str), 8); i++) {
|
|
__raw_writel(str[i], reg);
|
|
reg += MALTA_ASCIIPOS1 - MALTA_ASCIIPOS0;
|
|
}
|
|
|
|
/* fill the rest of the display with spaces */
|
|
for (; i < 8; i++) {
|
|
__raw_writel(' ', reg);
|
|
reg += MALTA_ASCIIPOS1 - MALTA_ASCIIPOS0;
|
|
}
|
|
}
|
|
|
|
static enum core_card malta_core_card(void)
|
|
{
|
|
u32 corid, rev;
|
|
const void *reg = (const void *)CKSEG1ADDR(MALTA_REVISION);
|
|
|
|
rev = __raw_readl(reg);
|
|
corid = (rev & MALTA_REVISION_CORID_MSK) >> MALTA_REVISION_CORID_SHF;
|
|
|
|
switch (corid) {
|
|
case MALTA_REVISION_CORID_CORE_LV:
|
|
return CORE_LV;
|
|
|
|
case MALTA_REVISION_CORID_CORE_FPGA6:
|
|
return CORE_FPGA6;
|
|
|
|
default:
|
|
return CORE_UNKNOWN;
|
|
}
|
|
}
|
|
|
|
static enum sys_con malta_sys_con(void)
|
|
{
|
|
switch (malta_core_card()) {
|
|
case CORE_LV:
|
|
return SYSCON_GT64120;
|
|
|
|
case CORE_FPGA6:
|
|
return SYSCON_MSC01;
|
|
|
|
default:
|
|
return SYSCON_UNKNOWN;
|
|
}
|
|
}
|
|
|
|
int dram_init(void)
|
|
{
|
|
gd->ram_size = CONFIG_SYS_MEM_SIZE;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int checkboard(void)
|
|
{
|
|
enum core_card core;
|
|
|
|
malta_lcd_puts("U-Boot");
|
|
puts("Board: MIPS Malta");
|
|
|
|
core = malta_core_card();
|
|
switch (core) {
|
|
case CORE_LV:
|
|
puts(" CoreLV");
|
|
break;
|
|
|
|
case CORE_FPGA6:
|
|
puts(" CoreFPGA6");
|
|
break;
|
|
|
|
default:
|
|
puts(" CoreUnknown");
|
|
}
|
|
|
|
putc('\n');
|
|
return 0;
|
|
}
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
{
|
|
return pci_eth_init(bis);
|
|
}
|
|
|
|
void _machine_restart(void)
|
|
{
|
|
void __iomem *reset_base;
|
|
|
|
reset_base = (void __iomem *)CKSEG1ADDR(MALTA_RESET_BASE);
|
|
__raw_writel(GORESET, reset_base);
|
|
mdelay(1000);
|
|
}
|
|
|
|
int board_early_init_f(void)
|
|
{
|
|
ulong io_base;
|
|
|
|
/* choose correct PCI I/O base */
|
|
switch (malta_sys_con()) {
|
|
case SYSCON_GT64120:
|
|
io_base = CKSEG1ADDR(MALTA_GT_PCIIO_BASE);
|
|
break;
|
|
|
|
case SYSCON_MSC01:
|
|
io_base = CKSEG1ADDR(MALTA_MSC01_PCIIO_BASE);
|
|
break;
|
|
|
|
default:
|
|
return -1;
|
|
}
|
|
|
|
set_io_port_base(io_base);
|
|
|
|
/* setup FDC37M817 super I/O controller */
|
|
malta_superio_init();
|
|
|
|
return 0;
|
|
}
|
|
|
|
int misc_init_r(void)
|
|
{
|
|
rtc_reset();
|
|
|
|
return 0;
|
|
}
|
|
|
|
void pci_init_board(void)
|
|
{
|
|
pci_dev_t bdf;
|
|
u32 val32;
|
|
u8 val8;
|
|
|
|
switch (malta_sys_con()) {
|
|
case SYSCON_GT64120:
|
|
gt64120_pci_init((void *)CKSEG1ADDR(MALTA_GT_BASE),
|
|
0x00000000, 0x00000000, CONFIG_SYS_MEM_SIZE,
|
|
0x10000000, 0x10000000, 128 * 1024 * 1024,
|
|
0x00000000, 0x00000000, 0x20000);
|
|
break;
|
|
|
|
default:
|
|
case SYSCON_MSC01:
|
|
msc01_pci_init((void *)CKSEG1ADDR(MALTA_MSC01_PCI_BASE),
|
|
0x00000000, 0x00000000, CONFIG_SYS_MEM_SIZE,
|
|
MALTA_MSC01_PCIMEM_MAP,
|
|
CKSEG1ADDR(MALTA_MSC01_PCIMEM_BASE),
|
|
MALTA_MSC01_PCIMEM_SIZE, MALTA_MSC01_PCIIO_MAP,
|
|
0x00000000, MALTA_MSC01_PCIIO_SIZE);
|
|
break;
|
|
}
|
|
|
|
bdf = pci_find_device(PCI_VENDOR_ID_INTEL,
|
|
PCI_DEVICE_ID_INTEL_82371AB_0, 0);
|
|
if (bdf == -1)
|
|
panic("Failed to find PIIX4 PCI bridge\n");
|
|
|
|
/* setup PCI interrupt routing */
|
|
pci_write_config_byte(bdf, PCI_CFG_PIIX4_PIRQRCA, 10);
|
|
pci_write_config_byte(bdf, PCI_CFG_PIIX4_PIRQRCB, 10);
|
|
pci_write_config_byte(bdf, PCI_CFG_PIIX4_PIRQRCC, 11);
|
|
pci_write_config_byte(bdf, PCI_CFG_PIIX4_PIRQRCD, 11);
|
|
|
|
/* mux SERIRQ onto SERIRQ pin */
|
|
pci_read_config_dword(bdf, PCI_CFG_PIIX4_GENCFG, &val32);
|
|
val32 |= PCI_CFG_PIIX4_GENCFG_SERIRQ;
|
|
pci_write_config_dword(bdf, PCI_CFG_PIIX4_GENCFG, val32);
|
|
|
|
/* enable SERIRQ - Linux currently depends upon this */
|
|
pci_read_config_byte(bdf, PCI_CFG_PIIX4_SERIRQC, &val8);
|
|
val8 |= PCI_CFG_PIIX4_SERIRQC_EN | PCI_CFG_PIIX4_SERIRQC_CONT;
|
|
pci_write_config_byte(bdf, PCI_CFG_PIIX4_SERIRQC, val8);
|
|
|
|
bdf = pci_find_device(PCI_VENDOR_ID_INTEL,
|
|
PCI_DEVICE_ID_INTEL_82371AB, 0);
|
|
if (bdf == -1)
|
|
panic("Failed to find PIIX4 IDE controller\n");
|
|
|
|
/* enable bus master & IO access */
|
|
val32 |= PCI_COMMAND_MASTER | PCI_COMMAND_IO;
|
|
pci_write_config_dword(bdf, PCI_COMMAND, val32);
|
|
|
|
/* set latency */
|
|
pci_write_config_byte(bdf, PCI_LATENCY_TIMER, 0x40);
|
|
|
|
/* enable IDE/ATA */
|
|
pci_write_config_dword(bdf, PCI_CFG_PIIX4_IDETIM_PRI,
|
|
PCI_CFG_PIIX4_IDETIM_IDE);
|
|
pci_write_config_dword(bdf, PCI_CFG_PIIX4_IDETIM_SEC,
|
|
PCI_CFG_PIIX4_IDETIM_IDE);
|
|
}
|