[U-Boot] [PATCH v11 6/6] arm: faraday: add virtual machine support
Wolfgang Denk
wd at denx.de
Wed Mar 26 07:52:58 CET 2014
Dear Kuo-Jung Su,
In message <1395813799-3672-7-git-send-email-dantesu at gmail.com> you wrote:
> From: Kuo-Jung Su <dantesu at faraday-tech.com>
>
> Faraday Virtual Machine (FVM) is a QEMU based emulator
> which is designed for early stage software development
> (i.e., IPL, SPL development).
...
> +ulong clk_get_rate(const char *id)
> +{
> + ulong ret = 0;
> +
> + if (!strcmp(id, "AHB"))
> + ret = clk_get_rate_ahb();
> + else if (!strcmp(id, "APB"))
> + ret = clk_get_rate_apb();
> + else if (!strcmp(id, "CPU"))
> + ret = clk_get_rate_cpu();
> + else if (!strcmp(id, "I2C"))
> + ret = clk_get_rate_apb();
> + else if (!strcmp(id, "SSP"))
> + ret = clk_get_rate_apb();
> + else if (!strcmp(id, "SPI"))
> + ret = clk_get_rate_ahb();
> + else if (!strcmp(id, "MMC") || !strcmp(id, "SDC"))
> + ret = clk_get_rate_ahb();
> +
> + return ret;
> +}
I have seen basically identical code in [PATCH v11 4/6] arm: faraday:
add A369 evaluation board; please move this (and other common code)
into a common location so we have only one implementation of common
code.
Best regards,
Wolfgang Denk
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
You don't stop doing things because you get old. You get old because
you stop doing things. - Rosamunde Pilcher
More information about the U-Boot
mailing list