upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
585 B
31 lines
585 B
9 years ago
|
/*
|
||
|
* Copyright (C) 2003, 2004 Ralf Baechle
|
||
|
* Copyright (C) 2004 Maciej W. Rozycki
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0
|
||
|
*/
|
||
|
#ifndef __ASM_CPU_FEATURES_H
|
||
|
#define __ASM_CPU_FEATURES_H
|
||
|
|
||
|
#include <cpu-feature-overrides.h>
|
||
|
|
||
|
#ifdef CONFIG_32BIT
|
||
|
# ifndef cpu_has_64bits
|
||
|
# define cpu_has_64bits 0
|
||
|
# endif
|
||
|
# ifndef cpu_has_64bit_addresses
|
||
|
# define cpu_has_64bit_addresses 0
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#ifdef CONFIG_64BIT
|
||
|
# ifndef cpu_has_64bits
|
||
|
# define cpu_has_64bits 1
|
||
|
# endif
|
||
|
# ifndef cpu_has_64bit_addresses
|
||
|
# define cpu_has_64bit_addresses 1
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#endif /* __ASM_CPU_FEATURES_H */
|