summaryrefslogtreecommitdiffstats
path: root/u-boot/board/goldelico/beagleb4/beagleb4.c
blob: 9be6b4191f651fb61c41d2b83b1bd9369143e40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <common.h>
#include <twl4030.h>
#include <asm/io.h>
#include <asm/arch/mmc_host_def.h>
#include <asm/arch/mux.h>
#include <asm/arch/sys_proto.h>
#include <asm/arch/gpio.h>
#include <asm/mach-types.h>
#include "../../ti/beagle/beagle.h"
#include "beagleb4.h"

// make us initialize using both pinmux sets

void muxinit(void)
{
	MUX_BEAGLE();
	MUX_BEAGLE_EXPANDER();
}

#undef MUX_BEAGLE
#define MUX_BEAGLE() muxinit()

// take the original beagle.c code
#include "../../ti/beagle/beagle.c"