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.
33 lines
729 B
33 lines
729 B
10 years ago
|
/*
|
||
|
* Copyright (C) 2014 Freescale Semiconductor
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef __FSL_DBG_SERVER_H__
|
||
|
#define __FSL_DBG_SERVER_H__
|
||
|
|
||
|
#include <asm/io.h>
|
||
|
#include <common.h>
|
||
|
|
||
|
/*
|
||
|
* Define Debug Server firmware version information
|
||
|
*/
|
||
|
|
||
|
/* Major version number: incremented on API compatibility changes */
|
||
|
#define DEBUG_SERVER_VER_MAJOR 0
|
||
|
|
||
|
/* Minor version number: incremented on API additions (backward
|
||
|
* compatible); reset when major version is incremented.
|
||
|
*/
|
||
|
#define DEBUG_SERVER_VER_MINOR 1
|
||
|
|
||
|
#define DEBUG_SERVER_INIT_STATUS (1 << 0)
|
||
|
#define DEBUG_SERVER_INIT_STATUS_MASK (0x00000001)
|
||
|
|
||
|
int debug_server_init(void);
|
||
|
unsigned long debug_server_get_dram_block_size(void);
|
||
|
|
||
|
#endif /* __FSL_DBG_SERVER_H__ */
|
||
|
|