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
598 B
34 lines
598 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* LPC32xx MUX interface
|
|
*
|
|
* (C) Copyright 2015 DENX Software Engineering GmbH
|
|
* Written-by: Albert ARIBAUD <albert.aribaud@3adev.fr>
|
|
*/
|
|
|
|
/**
|
|
* MUX register map for LPC32xx
|
|
*/
|
|
|
|
struct mux_regs {
|
|
u32 reserved1[10];
|
|
u32 p2_mux_set;
|
|
u32 p2_mux_clr;
|
|
u32 p2_mux_state;
|
|
u32 reserved2[51];
|
|
u32 p_mux_set;
|
|
u32 p_mux_clr;
|
|
u32 p_mux_state;
|
|
u32 reserved3;
|
|
u32 p3_mux_set;
|
|
u32 p3_mux_clr;
|
|
u32 p3_mux_state;
|
|
u32 reserved4;
|
|
u32 p0_mux_set;
|
|
u32 p0_mux_clr;
|
|
u32 p0_mux_state;
|
|
u32 reserved5;
|
|
u32 p1_mux_set;
|
|
u32 p1_mux_clr;
|
|
u32 p1_mux_state;
|
|
};
|
|
|