Blame view
drivers/pcmcia/sa1100_generic.c
3.82 KB
1da177e4c Linux-2.6.12-rc2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
/*====================================================================== Device driver for the PCMCIA control functionality of StrongARM SA-1100 microprocessors. The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The initial developer of the original code is John G. Dorsey <john+@cs.cmu.edu>. Portions created by John G. Dorsey are Copyright (C) 1999 John G. Dorsey. All Rights Reserved. Alternatively, the contents of this file may be used under the terms of the GNU Public License version 2 (the "GPL"), in which case the provisions of the GPL are applicable instead of the above. If you wish to allow the use of your version of this file only under the terms of the GPL and not to allow others to use your version of this file under the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL. If you do not delete the provisions above, a recipient may use your version of this file under either the MPL or the GPL. ======================================================================*/ #include <linux/module.h> #include <linux/init.h> |
5a0e3ad6a include cleanup: ... |
35 |
#include <linux/slab.h> |
d052d1bef Create platform_d... |
36 |
#include <linux/platform_device.h> |
1da177e4c Linux-2.6.12-rc2 |
37 |
|
1da177e4c Linux-2.6.12-rc2 |
38 |
#include <pcmcia/ss.h> |
77bb86a1b [ARM] Support pcm... |
39 |
#include <asm/hardware/scoop.h> |
1da177e4c Linux-2.6.12-rc2 |
40 |
#include "sa1100_generic.h" |
77bb86a1b [ARM] Support pcm... |
41 |
int __init pcmcia_collie_init(struct device *dev); |
21fb7674c pcmcia: remove us... |
42 |
static int (*sa11x0_pcmcia_hw_init[])(struct device *dev) = { |
1da177e4c Linux-2.6.12-rc2 |
43 44 45 46 47 48 |
#ifdef CONFIG_SA1100_ASSABET pcmcia_assabet_init, #endif #ifdef CONFIG_SA1100_CERF pcmcia_cerf_init, #endif |
e7435f866 ARM: 5824/1: SA11... |
49 |
#if defined(CONFIG_SA1100_H3100) || defined(CONFIG_SA1100_H3600) |
1da177e4c Linux-2.6.12-rc2 |
50 51 |
pcmcia_h3600_init, #endif |
fa87672ab ARM: 6458/1: pcmc... |
52 53 54 |
#ifdef CONFIG_SA1100_NANOENGINE pcmcia_nanoengine_init, #endif |
1da177e4c Linux-2.6.12-rc2 |
55 56 57 58 59 60 |
#ifdef CONFIG_SA1100_SHANNON pcmcia_shannon_init, #endif #ifdef CONFIG_SA1100_SIMPAD pcmcia_simpad_init, #endif |
77bb86a1b [ARM] Support pcm... |
61 62 63 |
#ifdef CONFIG_SA1100_COLLIE pcmcia_collie_init, #endif |
1da177e4c Linux-2.6.12-rc2 |
64 |
}; |
34cdf25a1 pcmcia: remove us... |
65 |
static int sa11x0_drv_pcmcia_probe(struct platform_device *dev) |
1da177e4c Linux-2.6.12-rc2 |
66 67 68 69 70 71 72 |
{ int i, ret = -ENODEV; /* * Initialise any "on-board" PCMCIA sockets. */ for (i = 0; i < ARRAY_SIZE(sa11x0_pcmcia_hw_init); i++) { |
7a192ec33 platform driver: ... |
73 |
ret = sa11x0_pcmcia_hw_init[i](&dev->dev); |
1da177e4c Linux-2.6.12-rc2 |
74 75 76 77 78 79 |
if (ret == 0) break; } return ret; } |
7a192ec33 platform driver: ... |
80 81 |
static int sa11x0_drv_pcmcia_remove(struct platform_device *dev) { |
be85458ed PCMCIA: soc_commo... |
82 83 84 85 86 87 88 |
struct skt_dev_info *sinfo = platform_get_drvdata(dev); int i; platform_set_drvdata(dev, NULL); for (i = 0; i < sinfo->nskt; i++) soc_pcmcia_remove_one(&sinfo->skt[i]); |
be85458ed PCMCIA: soc_commo... |
89 |
return 0; |
7a192ec33 platform driver: ... |
90 |
} |
7a192ec33 platform driver: ... |
91 92 93 |
static struct platform_driver sa11x0_pcmcia_driver = { .driver = { .name = "sa11x0-pcmcia", |
7a192ec33 platform driver: ... |
94 |
}, |
1da177e4c Linux-2.6.12-rc2 |
95 |
.probe = sa11x0_drv_pcmcia_probe, |
7a192ec33 platform driver: ... |
96 |
.remove = sa11x0_drv_pcmcia_remove, |
1da177e4c Linux-2.6.12-rc2 |
97 98 99 100 101 102 103 104 105 106 107 108 |
}; /* sa11x0_pcmcia_init() * ^^^^^^^^^^^^^^^^^^^^ * * This routine performs low-level PCMCIA initialization and then * registers this socket driver with Card Services. * * Returns: 0 on success, -ve error code on failure */ static int __init sa11x0_pcmcia_init(void) { |
7a192ec33 platform driver: ... |
109 |
return platform_driver_register(&sa11x0_pcmcia_driver); |
1da177e4c Linux-2.6.12-rc2 |
110 111 112 113 114 115 116 117 118 |
} /* sa11x0_pcmcia_exit() * ^^^^^^^^^^^^^^^^^^^^ * Invokes the low-level kernel service to free IRQs associated with this * socket controller and reset GPIO edge detection. */ static void __exit sa11x0_pcmcia_exit(void) { |
7a192ec33 platform driver: ... |
119 |
platform_driver_unregister(&sa11x0_pcmcia_driver); |
1da177e4c Linux-2.6.12-rc2 |
120 121 122 123 124 |
} MODULE_AUTHOR("John Dorsey <john+@cs.cmu.edu>"); MODULE_DESCRIPTION("Linux PCMCIA Card Services: SA-11x0 Socket Controller"); MODULE_LICENSE("Dual MPL/GPL"); |
f36598aec [ARM] 2873/1: PCM... |
125 |
fs_initcall(sa11x0_pcmcia_init); |
1da177e4c Linux-2.6.12-rc2 |
126 |
module_exit(sa11x0_pcmcia_exit); |