summaryrefslogtreecommitdiff
path: root/arch/arm/mach-stmp378x/stmp378x_devb_rotdec.c
blob: 05270fe39419d8e34069cb7c073a1f8054f64832 (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
/*
 * Freescale STMP378X Rotary Encoder module pin multiplexing
 *
 * Author: Drew Benedetti <drewb@embeddedalley.com>
 *
 * Copyright 2008-2009 Freescale Semiconductor, Inc. All Rights Reserved.
 * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved.
 */

/*
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */
#include <linux/kernel.h>
#include <linux/io.h>
#include <linux/module.h>
#include <mach/pins.h>
#include <mach/pinmux.h>

#define ROTARY_FUN	PIN_FUN1

#define TITLE	"stmp3xxx-rotdec"

int rotdec_pinmux_request(void)
{
	int rc = 0;

	rc |= stmp3xxx_request_pin(PINID_ROTARYA, ROTARY_FUN, TITLE);
	rc |= stmp3xxx_request_pin(PINID_ROTARYB, ROTARY_FUN, TITLE);

	return rc;
}
EXPORT_SYMBOL_GPL(rotdec_pinmux_request);

void rotdec_pinmux_free(void)
{
	stmp3xxx_release_pin(PINID_ROTARYA, TITLE);
	stmp3xxx_release_pin(PINID_ROTARYB, TITLE);
}
EXPORT_SYMBOL_GPL(rotdec_pinmux_free);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Drew Benedetti <drewb@embeddedalley.com>");