blob: 6eb9fe83256c1149a076dda9aaefb25bd5d057e8 [file] [log] [blame]
Furquan Shaikh8c8c3772014-02-19 11:35:30 -08001##
Furquan Shaikh8c8c3772014-02-19 11:35:30 -08002##
3## Copyright (C) 2008 Advanced Micro Devices, Inc.
4##
5## Redistribution and use in source and binary forms, with or without
6## modification, are permitted provided that the following conditions
7## are met:
8## 1. Redistributions of source code must retain the above copyright
9## notice, this list of conditions and the following disclaimer.
10## 2. Redistributions in binary form must reproduce the above copyright
11## notice, this list of conditions and the following disclaimer in the
12## documentation and/or other materials provided with the distribution.
13## 3. The name of the author may not be used to endorse or promote products
14## derived from this software without specific prior written permission.
15##
16## THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19## ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26## SUCH DAMAGE.
27##
28
29CFLAGS += -march=armv8-a
30arm64_asm_flags =
31
32head.o-y += head.S
33libc-y += main.c sysinfo.c
34libc-y += timer.c coreboot.c util.S
35libc-y += virtual.c
36libc-y += memcpy.S memset.S memmove.S
37libc-y += exception_asm.S exception.c
38libc-y += cache.c cpu.S
Furquan Shaikh284138b2014-06-18 17:01:01 -070039libc-y += selfboot.c
Furquan Shaikhadabbe52014-09-04 15:32:17 -070040libc-y += mmu.c
Furquan Shaikh2d60fb62014-06-17 17:05:25 -070041libcbfs-$(CONFIG_LP_CBFS) += dummy_media.c
Furquan Shaikh8c8c3772014-02-19 11:35:30 -080042
Furquan Shaikhf8f77732014-06-20 00:19:31 -070043libgdb-y += gdb.c
44
Furquan Shaikh8c8c3772014-02-19 11:35:30 -080045# Add other classes here when you put assembly files into them!
46 head.o-S-ccopts += $(arm64_asm_flags)
47 libc-S-ccopts += $(arm64_asm_flags)