forked from luck/tmp_suning_uos_patched
a032d33b65
Resolve the following warnings from smatch: arch/arm/mach-omap2/gpmc.c:282 gpmc_cs_set_timings() info: why not propagate 'div' from gpmc_cs_calc_divider() instead of -1? arch/arm/mach-omap2/serial.c:328 omap_serial_init_port() error: 'pdev' dereferencing possible ERR_PTR() arch/arm/mach-omap2/timer.c:213 omap2_gp_clockevent_init() Error invalid range 4096 to -1 arch/arm/mach-omap2/gpio.c:63 omap2_gpio_dev_init() warn: possible memory leak of 'pdata' arch/arm/mach-omap2/omap_hwmod.c:1478 _assert_hardreset() warn: assigning -22 to unsigned variable 'ret' arch/arm/mach-omap2/omap_hwmod.c:1487 _assert_hardreset() warn: 4294963201 is more than 255 (max '(ret)' can be) so this is always the same. arch/arm/mach-omap2/omap_hwmod.c:1545 _read_hardreset() warn: assigning -22 to unsigned variable 'ret' arch/arm/mach-omap2/omap_hwmod.c:1554 _read_hardreset() warn: 4294963201 is more than 255 (max '(ret)' can be) so this is always the same. arch/arm/mach-omap2/dpll3xxx.c:629 omap3_clkoutx2_recalc() error: we previously assumed 'pclk' could be null (see line 627) arch/arm/mach-omap2/board-n8x0.c:422 n8x0_mmc_late_init() Error invalid range 14 to 13 arch/arm/mach-omap1/leds-h2p2-debug.c:71 h2p2_dbg_leds_event() error: potentially derefencing uninitialized 'fpga'. arch/arm/plat-omap/mux.c:79 omap_cfg_reg() Error invalid range 4096 to -1 Thanks to Tony Lindgren <tony@atomide.com> for pointing out that BUG() can be disabled. The changes in the first version that removed the subsequent return() after BUG() states have been dropped. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Tony Lindgren <tony@atomide.com>
91 lines
2.2 KiB
C
91 lines
2.2 KiB
C
/*
|
|
* linux/arch/arm/plat-omap/mux.c
|
|
*
|
|
* Utility to set the Omap MUX and PULL_DWN registers from a table in mux.h
|
|
*
|
|
* Copyright (C) 2003 - 2008 Nokia Corporation
|
|
*
|
|
* Written by Tony Lindgren
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
*/
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/io.h>
|
|
#include <linux/spinlock.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
#include <plat/cpu.h>
|
|
#include <plat/mux.h>
|
|
|
|
#ifdef CONFIG_OMAP_MUX
|
|
|
|
static struct omap_mux_cfg *mux_cfg;
|
|
|
|
int __init omap_mux_register(struct omap_mux_cfg *arch_mux_cfg)
|
|
{
|
|
if (!arch_mux_cfg || !arch_mux_cfg->pins || arch_mux_cfg->size == 0
|
|
|| !arch_mux_cfg->cfg_reg) {
|
|
printk(KERN_ERR "Invalid pin table\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
mux_cfg = arch_mux_cfg;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Sets the Omap MUX and PULL_DWN registers based on the table
|
|
*/
|
|
int __init_or_module omap_cfg_reg(const unsigned long index)
|
|
{
|
|
struct pin_config *reg;
|
|
|
|
if (!cpu_class_is_omap1()) {
|
|
printk(KERN_ERR "mux: Broken omap_cfg_reg(%lu) entry\n",
|
|
index);
|
|
WARN_ON(1);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (mux_cfg == NULL) {
|
|
printk(KERN_ERR "Pin mux table not initialized\n");
|
|
return -ENODEV;
|
|
}
|
|
|
|
if (index >= mux_cfg->size) {
|
|
printk(KERN_ERR "Invalid pin mux index: %lu (%lu)\n",
|
|
index, mux_cfg->size);
|
|
dump_stack();
|
|
return -ENODEV;
|
|
}
|
|
|
|
reg = &mux_cfg->pins[index];
|
|
|
|
if (!mux_cfg->cfg_reg)
|
|
return -ENODEV;
|
|
|
|
return mux_cfg->cfg_reg(reg);
|
|
}
|
|
EXPORT_SYMBOL(omap_cfg_reg);
|
|
#else
|
|
#define omap_mux_init() do {} while(0)
|
|
#define omap_cfg_reg(x) do {} while(0)
|
|
#endif /* CONFIG_OMAP_MUX */
|