blob: f4ab5d30f5da8bc70611bd92157a8446ec552ecc [file] [log] [blame]
/*
* Copyright Codito Technologies (www.codito.com)
*
* include/asm-arc/uboot-arc.h
*
* Copyright (C)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Authors : Sandeep Patil (sandeep.patil@codito.com)
* Pradeep Sawlani (pradeep.sawlani@codito.com)
*/
#ifndef _U_BOOT_ARC_H_
#define _U_BOOT_ARC_H_ 1
extern ulong _arcboot_start; /* code start */
extern ulong _bss_start; /* bss start */
extern ulong _bss_end; /* bss end */
extern ulong __bss_start;
extern ulong __bss_end;
extern ulong __vector_start; /* interrupt vector start */
extern ulong __vector_end; /* interrupt vector end */
extern ulong __data_start; /* data segment start */
extern ulong __data_end; /* data segment end */
int cpu_init(void);
extern unsigned round_page(unsigned x);
#endif /* _U_BOOT_ARC_H_ */