123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * 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();
- }
|