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.
34 lines
1.0 KiB
34 lines
1.0 KiB
/*
|
|
* (c) Copyright 2010-2014 Xilinx, Inc. All rights reserved.
|
|
* (c) Copyright 2016 Topic Embedded Products.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#define OPCODE_EXIT 0U
|
|
#define OPCODE_MASKWRITE 0U
|
|
#define OPCODE_MASKPOLL 1U
|
|
#define OPCODE_MASKDELAY 2U
|
|
#define OPCODE_ADDRESS_MASK (~3U)
|
|
|
|
/* Sentinel */
|
|
#define EMIT_EXIT() OPCODE_EXIT
|
|
/* Opcode is in lower 2 bits of address, address is always 4-byte aligned */
|
|
#define EMIT_MASKWRITE(addr, mask, val) OPCODE_MASKWRITE | addr, mask, val
|
|
#define EMIT_MASKPOLL(addr, mask) OPCODE_MASKPOLL | addr, mask
|
|
#define EMIT_MASKDELAY(addr, mask) OPCODE_MASKDELAY | addr, mask
|
|
|
|
/* Returns codes of ps7_init* */
|
|
#define PS7_INIT_SUCCESS (0)
|
|
#define PS7_INIT_CORRUPT (1)
|
|
#define PS7_INIT_TIMEOUT (2)
|
|
#define PS7_POLL_FAILED_DDR_INIT (3)
|
|
#define PS7_POLL_FAILED_DMA (4)
|
|
#define PS7_POLL_FAILED_PLL (5)
|
|
|
|
/* Called by spl.c */
|
|
int ps7_init(void);
|
|
int ps7_post_config(void);
|
|
|
|
/* Defined in ps7_init_common.c */
|
|
int ps7_config(unsigned long *ps7_config_init);
|
|
|