mux.c 2.3 KB
Newer Older
1
/*
2
 * Utility to set the DAVINCI MUX register from a table in mux.h
3 4 5
 *
 * Author: Vladimir Barinov, MontaVista Software, Inc. <source@mvista.com>
 *
6 7 8 9 10
 * Based on linux/arch/arm/plat-omap/mux.c:
 * Copyright (C) 2003 - 2005 Nokia Corporation
 *
 * Written by Tony Lindgren
 *
11 12 13 14
 * 2007 (c) MontaVista Software, Inc. This file is licensed under
 * the terms of the GNU General Public License version 2. This program
 * is licensed "as is" without any warranty of any kind, whether express
 * or implied.
15 16
 *
 * Copyright (C) 2008 Texas Instruments.
17 18
 */
#include <linux/io.h>
19
#include <linux/module.h>
20 21
#include <linux/spinlock.h>

22 23
#include <mach/hardware.h>
#include <mach/mux.h>
24
#include <mach/common.h>
25

26 27 28 29
/*
 * Sets the DAVINCI MUX register based on the table
 */
int __init_or_module davinci_cfg_reg(const unsigned long index)
30
{
31
	static DEFINE_SPINLOCK(mux_spin_lock);
32 33
	struct davinci_soc_info *soc_info = &davinci_soc_info;
	void __iomem *base = soc_info->pinmux_base;
34 35 36 37 38
	unsigned long flags;
	const struct mux_config *cfg;
	unsigned int reg_orig = 0, reg = 0;
	unsigned int mask, warn = 0;

39
	if (!soc_info->pinmux_pins)
40 41
		BUG();

42
	if (index >= soc_info->pinmux_pins_num) {
43
		printk(KERN_ERR "Invalid pin mux index: %lu (%lu)\n",
44
		       index, soc_info->pinmux_pins_num);
45 46 47 48
		dump_stack();
		return -ENODEV;
	}

49
	cfg = &soc_info->pinmux_pins[index];
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

	if (cfg->name == NULL) {
		printk(KERN_ERR "No entry for the specified index\n");
		return -ENODEV;
	}

	/* Update the mux register in question */
	if (cfg->mask) {
		unsigned	tmp1, tmp2;

		spin_lock_irqsave(&mux_spin_lock, flags);
		reg_orig = __raw_readl(base + cfg->mux_reg);

		mask = (cfg->mask << cfg->mask_offset);
		tmp1 = reg_orig & mask;
		reg = reg_orig & ~mask;

		tmp2 = (cfg->mode << cfg->mask_offset);
		reg |= tmp2;

		if (tmp1 != tmp2)
			warn = 1;

		__raw_writel(reg, base + cfg->mux_reg);
		spin_unlock_irqrestore(&mux_spin_lock, flags);
	}

	if (warn) {
#ifdef CONFIG_DAVINCI_MUX_WARNINGS
		printk(KERN_WARNING "MUX: initialized %s\n", cfg->name);
#endif
	}
82

83 84 85 86 87
#ifdef CONFIG_DAVINCI_MUX_DEBUG
	if (cfg->debug || warn) {
		printk(KERN_WARNING "MUX: Setting register %s\n", cfg->name);
		printk(KERN_WARNING "	   %s (0x%08x) = 0x%08x -> 0x%08x\n",
		       cfg->mux_reg_name, cfg->mux_reg, reg_orig, reg);
88
	}
89
#endif
90

91
	return 0;
92
}
93
EXPORT_SYMBOL(davinci_cfg_reg);