Blame view

arch/arm/plat-mxc/audmux-v1.c 1.56 KB
9eedbdf1b   Sascha Hauer   MXC: Add a digita...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  /*
   * Copyright 2009 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
   *
   * Initial development of this code was funded by
   * Phytec Messtechnik GmbH, http://www.phytec.de
   *
   * 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.
9eedbdf1b   Sascha Hauer   MXC: Add a digita...
16
17
18
19
20
21
22
23
24
25
   */
  
  #include <linux/module.h>
  #include <linux/err.h>
  #include <linux/io.h>
  #include <linux/clk.h>
  #include <mach/audmux.h>
  #include <mach/hardware.h>
  
  static void __iomem *audmux_base;
4c8b581dd   Sascha Hauer   i.MX27 audmux: Fi...
26
27
28
  static unsigned char port_mapping[] = {
  	0x0, 0x4, 0x8, 0x10, 0x14, 0x1c,
  };
9eedbdf1b   Sascha Hauer   MXC: Add a digita...
29
30
31
32
33
34
35
36
  
  int mxc_audmux_v1_configure_port(unsigned int port, unsigned int pcr)
  {
  	if (!audmux_base) {
  		printk("%s: not configured
  ", __func__);
  		return -ENOSYS;
  	}
4c8b581dd   Sascha Hauer   i.MX27 audmux: Fi...
37
38
39
40
  	if (port >= ARRAY_SIZE(port_mapping))
  		return -EINVAL;
  
  	writel(pcr, audmux_base + port_mapping[port]);
9eedbdf1b   Sascha Hauer   MXC: Add a digita...
41
42
43
44
45
46
47
  
  	return 0;
  }
  EXPORT_SYMBOL_GPL(mxc_audmux_v1_configure_port);
  
  static int mxc_audmux_v1_init(void)
  {
51918075d   Uwe Kleine-König   arm/imx/audmux-v1...
48
49
50
51
52
53
54
55
56
57
58
59
  #ifdef CONFIG_MACH_MX21
  	if (cpu_is_mx21())
  		audmux_base = MX21_IO_ADDRESS(MX21_AUDMUX_BASE_ADDR);
  	else
  #endif
  #ifdef CONFIG_MACH_MX27
  	if (cpu_is_mx27())
  		audmux_base = MX27_IO_ADDRESS(MX27_AUDMUX_BASE_ADDR);
  	else
  #endif
  		(void)0;
  	
9eedbdf1b   Sascha Hauer   MXC: Add a digita...
60
61
62
63
  	return 0;
  }
  
  postcore_initcall(mxc_audmux_v1_init);