blob: 3015b5a389365c2a7488e26278c82cee85e030a7 [file] [log] [blame]
Stephen Warren54862bf2011-12-16 15:12:31 -07001/*
2 * Copyright (c) 2011, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This software is licensed under the terms of the GNU General Public
5 * License version 2, as published by the Free Software Foundation, and
6 * may be copied, distributed, and modified under those terms.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 */
14
Stephen Warrena58116f2011-12-16 15:12:32 -070015#include <linux/device.h>
16#include <linux/kernel.h>
17#include <linux/notifier.h>
Stephen Warren54862bf2011-12-16 15:12:31 -070018#include <linux/of.h>
Stephen Warrena58116f2011-12-16 15:12:32 -070019#include <linux/string.h>
Stephen Warren54862bf2011-12-16 15:12:31 -070020
Stephen Warren54862bf2011-12-16 15:12:31 -070021#include <mach/pinmux.h>
22
23#include "board-pinmux.h"
24#include "devices.h"
25
Stephen Warrena58116f2011-12-16 15:12:32 -070026struct tegra_board_pinmux_conf *confs[2];
Stephen Warren54862bf2011-12-16 15:12:31 -070027
Stephen Warrena58116f2011-12-16 15:12:32 -070028static void tegra_board_pinmux_setup_pinmux(void)
29{
30 int i;
Stephen Warren54862bf2011-12-16 15:12:31 -070031
32 for (i = 0; i < ARRAY_SIZE(confs); i++) {
33 if (!confs[i])
34 continue;
35
36 tegra_pinmux_config_table(confs[i]->pgs, confs[i]->pg_count);
37
38 if (confs[i]->drives)
39 tegra_drive_pinmux_config_table(confs[i]->drives,
40 confs[i]->drive_count);
Stephen Warren54862bf2011-12-16 15:12:31 -070041 }
Stephen Warrena58116f2011-12-16 15:12:32 -070042}
43
44static int tegra_board_pinmux_bus_notify(struct notifier_block *nb,
45 unsigned long event, void *vdev)
46{
Stephen Warrena58116f2011-12-16 15:12:32 -070047 struct device *dev = vdev;
Stephen Warrena58116f2011-12-16 15:12:32 -070048
49 if (event != BUS_NOTIFY_BOUND_DRIVER)
50 return NOTIFY_DONE;
51
Stephen Warren3e215d02012-02-18 01:04:55 -070052 if (strcmp(dev_name(dev), PINMUX_DEV))
Stephen Warrena58116f2011-12-16 15:12:32 -070053 return NOTIFY_DONE;
Stephen Warren3e215d02012-02-18 01:04:55 -070054
55 tegra_board_pinmux_setup_pinmux();
56
57 return NOTIFY_STOP_MASK;
Stephen Warrena58116f2011-12-16 15:12:32 -070058}
59
60static struct notifier_block nb = {
61 .notifier_call = tegra_board_pinmux_bus_notify,
62};
63
64static struct platform_device *devices[] = {
65 &tegra_gpio_device,
66 &tegra_pinmux_device,
67};
68
69void tegra_board_pinmux_init(struct tegra_board_pinmux_conf *conf_a,
70 struct tegra_board_pinmux_conf *conf_b)
71{
72 confs[0] = conf_a;
73 confs[1] = conf_b;
74
75 bus_register_notifier(&platform_bus_type, &nb);
Stephen Warren54862bf2011-12-16 15:12:31 -070076
77 if (!of_machine_is_compatible("nvidia,tegra20"))
78 platform_add_devices(devices, ARRAY_SIZE(devices));
79}