2019-05-27 14:55:00 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-06-19 12:08:17 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de>
|
|
|
|
* JZ4740 SoC prom code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
|
|
|
|
#include <linux/serial_reg.h>
|
|
|
|
|
|
|
|
#include <asm/bootinfo.h>
|
2018-01-16 23:47:58 +08:00
|
|
|
#include <asm/fw/fw.h>
|
2010-06-19 12:08:17 +08:00
|
|
|
#include <asm/mach-jz4740/base.h>
|
|
|
|
|
|
|
|
void __init prom_init(void)
|
|
|
|
{
|
2018-01-16 23:47:58 +08:00
|
|
|
fw_init_cmdline();
|
2010-06-19 12:08:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void __init prom_free_prom_memory(void)
|
|
|
|
{
|
|
|
|
}
|