mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
ddd0ce87bf
After patch "of/platform: Add common method to populate default bus", it is possible for arch code to remove unnecessary callers of of_platform_populate with default match table. Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Alban Bedel <albeu@free.fr> Cc: Paul Burton <paul.burton@imgtec.com> Cc: James Hogan <james.hogan@imgtec.com> Cc: Joshua Henderson <joshua.henderson@microchip.com> Cc: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Signed-off-by: Rob Herring <robh@kernel.org>
45 lines
885 B
C
45 lines
885 B
C
/*
|
|
* Xilfpga platform setup
|
|
*
|
|
* Copyright (C) 2015 Imagination Technologies
|
|
* Author: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/of_fdt.h>
|
|
|
|
#include <asm/prom.h>
|
|
|
|
#define XILFPGA_UART_BASE 0xb0401000
|
|
|
|
const char *get_system_type(void)
|
|
{
|
|
return "MIPSfpga";
|
|
}
|
|
|
|
void __init plat_mem_setup(void)
|
|
{
|
|
__dt_setup_arch(__dtb_start);
|
|
strlcpy(arcs_cmdline, boot_command_line, COMMAND_LINE_SIZE);
|
|
}
|
|
|
|
void __init prom_init(void)
|
|
{
|
|
setup_8250_early_printk_port(XILFPGA_UART_BASE, 2, 50000);
|
|
}
|
|
|
|
void __init prom_free_prom_memory(void)
|
|
{
|
|
}
|
|
|
|
void __init device_tree_init(void)
|
|
{
|
|
if (!initial_boot_params)
|
|
return;
|
|
|
|
unflatten_and_copy_device_tree();
|
|
}
|