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.
23 lines
484 B
23 lines
484 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* MIPS Relocations
|
|
*
|
|
* Copyright (c) 2017 Imagination Technologies Ltd.
|
|
*/
|
|
|
|
#ifndef __ASM_MIPS_RELOCS_H__
|
|
#define __ASM_MIPS_RELOCS_H__
|
|
|
|
#define R_MIPS_NONE 0
|
|
#define R_MIPS_32 2
|
|
#define R_MIPS_26 4
|
|
#define R_MIPS_HI16 5
|
|
#define R_MIPS_LO16 6
|
|
#define R_MIPS_PC16 10
|
|
#define R_MIPS_64 18
|
|
#define R_MIPS_HIGHER 28
|
|
#define R_MIPS_HIGHEST 29
|
|
#define R_MIPS_PC21_S2 60
|
|
#define R_MIPS_PC26_S2 61
|
|
|
|
#endif /* __ASM_MIPS_RELOCS_H__ */
|
|
|