mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
1a4596601f
Signed-off-by: Wolfgang Denk <wd@denx.de> [trini: Fixup common/cmd_io.c] Signed-off-by: Tom Rini <trini@ti.com>
16 lines
368 B
C
16 lines
368 B
C
/*
|
|
* (C) Copyright 2011
|
|
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SYS_PROTO_H_
|
|
#define _SYS_PROTO_H_
|
|
|
|
u32 get_cpu_rev(void);
|
|
void mx3_setup_sdram_bank(u32 start_address, u32 ddr2_config,
|
|
u32 row, u32 col, u32 dsize, u32 refresh);
|
|
#define is_soc_rev(rev) ((get_cpu_rev() & 0xFF) - rev)
|
|
|
|
#endif
|