blob: f8ec85450c42c123b8931fbb1d20196f0c884b85 [file] [log] [blame]
Dmitry Baryshkov918dbcb2008-07-02 13:53:45 +01001/*
2 * linux/arch/arm/mach-pxa/pxa2xx.c
3 *
4 * code specific to pxa2xx
5 *
6 * Copyright (C) 2008 Dmitry Baryshkov
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/device.h>
Rob Herring23019a72012-03-20 14:33:19 -050016#include <linux/io.h>
Dmitry Baryshkov918dbcb2008-07-02 13:53:45 +010017
Russell Kingafd2fc02008-08-07 11:05:25 +010018#include <mach/hardware.h>
19#include <mach/pxa2xx-regs.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010020#include <mach/mfp-pxa25x.h>
Russell Kingafd2fc02008-08-07 11:05:25 +010021#include <mach/reset.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/irda.h>
Dmitry Baryshkov918dbcb2008-07-02 13:53:45 +010023
Eric Miao04fef222008-07-29 14:26:00 +080024void pxa2xx_clear_reset_status(unsigned int mask)
25{
26 /* RESET_STATUS_* has a 1:1 mapping with RCSR */
27 RCSR = mask;
28}
29
Dmitry Baryshkov918dbcb2008-07-02 13:53:45 +010030static unsigned long pxa2xx_mfp_fir[] = {
31 GPIO46_FICP_RXD,
32 GPIO47_FICP_TXD,
33};
34
35static unsigned long pxa2xx_mfp_sir[] = {
36 GPIO46_STUART_RXD,
37 GPIO47_STUART_TXD,
38};
39
40static unsigned long pxa2xx_mfp_off[] = {
41 GPIO46_GPIO | MFP_LPM_DRIVE_LOW,
42 GPIO47_GPIO | MFP_LPM_DRIVE_LOW,
43};
44
45void pxa2xx_transceiver_mode(struct device *dev, int mode)
46{
47 if (mode & IR_OFF) {
48 pxa2xx_mfp_config(pxa2xx_mfp_off, ARRAY_SIZE(pxa2xx_mfp_off));
49 } else if (mode & IR_SIRMODE) {
50 pxa2xx_mfp_config(pxa2xx_mfp_sir, ARRAY_SIZE(pxa2xx_mfp_sir));
51 } else if (mode & IR_FIRMODE) {
52 pxa2xx_mfp_config(pxa2xx_mfp_fir, ARRAY_SIZE(pxa2xx_mfp_fir));
53 } else
54 BUG();
55}
Marek Vasutc4bd0172009-07-17 12:50:43 +020056EXPORT_SYMBOL_GPL(pxa2xx_transceiver_mode);