summaryrefslogtreecommitdiff
path: root/arch/arm/mach-u300/padmux.c
blob: f3664564f08695b3d2960c3b95b5ab34e022813d (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 *
 * arch/arm/mach-u300/padmux.c
 *
 *
 * Copyright (C) 2009 ST-Ericsson AB
 * License terms: GNU General Public License (GPL) version 2
 * U300 PADMUX functions
 * Author: Linus Walleij <linus.walleij@stericsson.com>
 *
 */
#include <linux/io.h>
#include <linux/err.h>
#include <mach/u300-regs.h>
#include <mach/syscon.h>

#include "padmux.h"

/* Set the PAD MUX to route the MMC reader correctly to GPIO0. */
void pmx_set_mission_mode_mmc(void)
{
	u16 val;

	val = readw(U300_SYSCON_VBASE + U300_SYSCON_PMC1LR);
	val &= ~U300_SYSCON_PMC1LR_MMCSD_MASK;
	writew(val, U300_SYSCON_VBASE + U300_SYSCON_PMC1LR);
	val = readw(U300_SYSCON_VBASE + U300_SYSCON_PMC1HR);
	val &= ~U300_SYSCON_PMC1HR_APP_GPIO_1_MASK;
	val |= U300_SYSCON_PMC1HR_APP_GPIO_1_MMC;
	writew(val, U300_SYSCON_VBASE + U300_SYSCON_PMC1HR);
}

void pmx_set_mission_mode_spi(void)
{
	u16 val;

	/* Set up padmuxing so the SPI port and its chipselects are active */
	val = readw(U300_SYSCON_VBASE + U300_SYSCON_PMC1HR);
	/*
	 * Activate the SPI port (disable the use of these pins for generic
	 * GPIO, DSP, AAIF
	 */
	val &= ~U300_SYSCON_PMC1HR_APP_SPI_2_MASK;
	val |= U300_SYSCON_PMC1HR_APP_SPI_2_SPI;
	/*
	 * Use GPIO pin SPI CS1 for CS1 actually (it can be used for other
	 * things also)
	 */
	val &= ~U300_SYSCON_PMC1HR_APP_SPI_CS_1_MASK;
	val |= U300_SYSCON_PMC1HR_APP_SPI_CS_1_SPI;
	/*
	 * Use GPIO pin SPI CS2 for CS2 actually (it can be used for other
	 * things also)
	 */
	val &= ~U300_SYSCON_PMC1HR_APP_SPI_CS_2_MASK;
	val |= U300_SYSCON_PMC1HR_APP_SPI_CS_2_SPI;
	writew(val, U300_SYSCON_VBASE + U300_SYSCON_PMC1HR);
}