blob: aca2cfd02ca5406b1ee9aa23fc77846591ab3ce3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * rsrc_mgr.c -- Resource management routines and/or wrappers
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * The initial developer of the original code is David A. Hinds
9 * <dahinds@users.sourceforge.net>. Portions created by David A. Hinds
10 * are Copyright (C) 1999 David A. Hinds. All Rights Reserved.
11 *
12 * (C) 1999 David A. Hinds
13 */
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/kernel.h>
17
18#include <pcmcia/cs_types.h>
19#include <pcmcia/ss.h>
20#include <pcmcia/cs.h>
Dominik Brodowski91284222009-10-18 23:32:33 +020021#include <pcmcia/cistpl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "cs_internal.h"
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024static int static_init(struct pcmcia_socket *s)
25{
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 /* the good thing about SS_CAP_STATIC_MAP sockets is
27 * that they don't need a resource database */
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 s->resource_setup_done = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31 return 0;
32}
33
34
35struct pccard_resource_ops pccard_static_ops = {
36 .validate_mem = NULL,
37 .adjust_io_region = NULL,
38 .find_io = NULL,
39 .find_mem = NULL,
Dominik Brodowskic5023802008-06-19 19:02:52 +020040 .add_io = NULL,
41 .add_mem = NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 .init = static_init,
43 .exit = NULL,
44};
45EXPORT_SYMBOL(pccard_static_ops);
Dominik Brodowski3b27e942005-12-07 12:32:20 +010046
47
48#ifdef CONFIG_PCCARD_IODYN
49
50static struct resource *
51make_resource(unsigned long b, unsigned long n, int flags, char *name)
52{
53 struct resource *res = kzalloc(sizeof(*res), GFP_KERNEL);
54
55 if (res) {
56 res->name = name;
57 res->start = b;
58 res->end = b + n - 1;
59 res->flags = flags;
60 }
61 return res;
62}
63
64struct pcmcia_align_data {
65 unsigned long mask;
66 unsigned long offset;
67};
68
69static void pcmcia_align(void *align_data, struct resource *res,
70 unsigned long size, unsigned long align)
71{
72 struct pcmcia_align_data *data = align_data;
73 unsigned long start;
74
75 start = (res->start & ~data->mask) + data->offset;
76 if (start < res->start)
77 start += data->mask + 1;
78 res->start = start;
79
80#ifdef CONFIG_X86
Dominik Brodowski9fea84f2009-12-07 22:11:45 +010081 if (res->flags & IORESOURCE_IO) {
82 if (start & 0x300) {
83 start = (start + 0x3ff) & ~0x3ff;
84 res->start = start;
85 }
86 }
Dominik Brodowski3b27e942005-12-07 12:32:20 +010087#endif
88
89#ifdef CONFIG_M68K
Dominik Brodowski9fea84f2009-12-07 22:11:45 +010090 if (res->flags & IORESOURCE_IO) {
Dominik Brodowski3b27e942005-12-07 12:32:20 +010091 if ((res->start + size - 1) >= 1024)
92 res->start = res->end;
93 }
94#endif
95}
96
97
98static int iodyn_adjust_io_region(struct resource *res, unsigned long r_start,
99 unsigned long r_end, struct pcmcia_socket *s)
100{
101 return adjust_resource(res, r_start, r_end - r_start + 1);
102}
103
104
105static struct resource *iodyn_find_io_region(unsigned long base, int num,
106 unsigned long align, struct pcmcia_socket *s)
107{
108 struct resource *res = make_resource(0, num, IORESOURCE_IO,
Kay Sieversf2fecec2009-03-24 16:38:22 -0700109 dev_name(&s->dev));
Dominik Brodowski3b27e942005-12-07 12:32:20 +0100110 struct pcmcia_align_data data;
111 unsigned long min = base;
112 int ret;
113
114 if (align == 0)
115 align = 0x10000;
116
117 data.mask = align - 1;
118 data.offset = base & data.mask;
119
120#ifdef CONFIG_PCI
121 if (s->cb_dev) {
122 ret = pci_bus_alloc_resource(s->cb_dev->bus, res, num, 1,
123 min, 0, pcmcia_align, &data);
124 } else
125#endif
126 ret = allocate_resource(&ioport_resource, res, num, min, ~0UL,
127 1, pcmcia_align, &data);
128
129 if (ret != 0) {
130 kfree(res);
131 res = NULL;
132 }
133 return res;
134}
135
136struct pccard_resource_ops pccard_iodyn_ops = {
137 .validate_mem = NULL,
138 .adjust_io_region = iodyn_adjust_io_region,
139 .find_io = iodyn_find_io_region,
140 .find_mem = NULL,
Dominik Brodowskic5023802008-06-19 19:02:52 +0200141 .add_io = NULL,
142 .add_mem = NULL,
Dominik Brodowski3b27e942005-12-07 12:32:20 +0100143 .init = static_init,
144 .exit = NULL,
145};
146EXPORT_SYMBOL(pccard_iodyn_ops);
147
148#endif /* CONFIG_PCCARD_IODYN */