]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/tc/tc.c
drm/i915: make mappable struct resource centric
[mirror_ubuntu-bionic-kernel.git] / drivers / tc / tc.c
CommitLineData
1da177e4 1/*
b454cc66 2 * TURBOchannel bus services.
1da177e4 3 *
b454cc66
MR
4 * Copyright (c) Harald Koerfgen, 1998
5 * Copyright (c) 2001, 2003, 2005, 2006 Maciej W. Rozycki
6 * Copyright (c) 2005 James Simmons
1da177e4 7 *
b454cc66
MR
8 * This file is subject to the terms and conditions of the GNU
9 * General Public License. See the file "COPYING" in the main
10 * directory of this archive for more details.
1da177e4 11 */
b454cc66
MR
12#include <linux/compiler.h>
13#include <linux/errno.h>
1da177e4 14#include <linux/init.h>
b454cc66 15#include <linux/ioport.h>
1da177e4 16#include <linux/kernel.h>
b454cc66 17#include <linux/list.h>
1da177e4 18#include <linux/module.h>
5a0e3ad6 19#include <linux/slab.h>
a5fc9c0b 20#include <linux/string.h>
b454cc66 21#include <linux/tc.h>
a5fc9c0b 22#include <linux/types.h>
1da177e4 23
a5fc9c0b 24#include <asm/io.h>
a5fc9c0b 25
b454cc66
MR
26static struct tc_bus tc_bus = {
27 .name = "TURBOchannel",
28};
1da177e4 29
1da177e4 30/*
b454cc66 31 * Probing for TURBOchannel modules.
1da177e4 32 */
b454cc66 33static void __init tc_bus_add_devices(struct tc_bus *tbus)
1da177e4 34{
b454cc66
MR
35 resource_size_t slotsize = tbus->info.slot_size << 20;
36 resource_size_t extslotsize = tbus->ext_slot_size;
37 resource_size_t slotaddr;
38 resource_size_t extslotaddr;
39 resource_size_t devsize;
40 void __iomem *module;
41 struct tc_dev *tdev;
1da177e4 42 int i, slot, err;
a5fc9c0b 43 u8 pattern[4];
b454cc66 44 long offset;
1da177e4 45
b454cc66
MR
46 for (slot = 0; slot < tbus->num_tcslots; slot++) {
47 slotaddr = tbus->slot_base + slot * slotsize;
48 extslotaddr = tbus->ext_slot_base + slot * extslotsize;
49 module = ioremap_nocache(slotaddr, slotsize);
a5fc9c0b 50 BUG_ON(!module);
1da177e4 51
b454cc66 52 offset = TC_OLDCARD;
1da177e4
LT
53
54 err = 0;
b454cc66
MR
55 err |= tc_preadb(pattern + 0, module + offset + TC_PATTERN0);
56 err |= tc_preadb(pattern + 1, module + offset + TC_PATTERN1);
57 err |= tc_preadb(pattern + 2, module + offset + TC_PATTERN2);
58 err |= tc_preadb(pattern + 3, module + offset + TC_PATTERN3);
59 if (err)
60 goto out_err;
1da177e4
LT
61
62 if (pattern[0] != 0x55 || pattern[1] != 0x00 ||
63 pattern[2] != 0xaa || pattern[3] != 0xff) {
b454cc66 64 offset = TC_NEWCARD;
1da177e4
LT
65
66 err = 0;
b454cc66
MR
67 err |= tc_preadb(pattern + 0,
68 module + offset + TC_PATTERN0);
69 err |= tc_preadb(pattern + 1,
70 module + offset + TC_PATTERN1);
71 err |= tc_preadb(pattern + 2,
72 module + offset + TC_PATTERN2);
73 err |= tc_preadb(pattern + 3,
74 module + offset + TC_PATTERN3);
75 if (err)
76 goto out_err;
1da177e4
LT
77 }
78
79 if (pattern[0] != 0x55 || pattern[1] != 0x00 ||
b454cc66
MR
80 pattern[2] != 0xaa || pattern[3] != 0xff)
81 goto out_err;
82
83 /* Found a board, allocate it an entry in the list */
84 tdev = kzalloc(sizeof(*tdev), GFP_KERNEL);
85 if (!tdev) {
e2afb7de 86 pr_err("tc%x: unable to allocate tc_dev\n", slot);
b454cc66 87 goto out_err;
a5fc9c0b 88 }
df388556 89 dev_set_name(&tdev->dev, "tc%x", slot);
b454cc66
MR
90 tdev->bus = tbus;
91 tdev->dev.parent = &tbus->dev;
92 tdev->dev.bus = &tc_bus_type;
93 tdev->slot = slot;
1da177e4 94
a5fc9c0b 95 for (i = 0; i < 8; i++) {
b454cc66
MR
96 tdev->firmware[i] =
97 readb(module + offset + TC_FIRM_VER + 4 * i);
98 tdev->vendor[i] =
99 readb(module + offset + TC_VENDOR + 4 * i);
100 tdev->name[i] =
101 readb(module + offset + TC_MODULE + 4 * i);
1da177e4 102 }
b454cc66
MR
103 tdev->firmware[8] = 0;
104 tdev->vendor[8] = 0;
105 tdev->name[8] = 0;
106
df388556 107 pr_info("%s: %s %s %s\n", dev_name(&tdev->dev), tdev->vendor,
b454cc66
MR
108 tdev->name, tdev->firmware);
109
110 devsize = readb(module + offset + TC_SLOT_SIZE);
111 devsize <<= 22;
112 if (devsize <= slotsize) {
113 tdev->resource.start = slotaddr;
114 tdev->resource.end = slotaddr + devsize - 1;
115 } else if (devsize <= extslotsize) {
116 tdev->resource.start = extslotaddr;
117 tdev->resource.end = extslotaddr + devsize - 1;
118 } else {
e2afb7de
MR
119 pr_err("%s: Cannot provide slot space "
120 "(%ldMiB required, up to %ldMiB supported)\n",
121 dev_name(&tdev->dev), (long)(devsize >> 20),
122 (long)(max(slotsize, extslotsize) >> 20));
b454cc66
MR
123 kfree(tdev);
124 goto out_err;
1da177e4 125 }
b454cc66
MR
126 tdev->resource.name = tdev->name;
127 tdev->resource.flags = IORESOURCE_MEM;
128
129 tc_device_get_irq(tdev);
a5fc9c0b 130
5bb7889f
LK
131 if (device_register(&tdev->dev)) {
132 put_device(&tdev->dev);
133 goto out_err;
134 }
b454cc66
MR
135 list_add_tail(&tdev->node, &tbus->devices);
136
137out_err:
a5fc9c0b 138 iounmap(module);
1da177e4
LT
139 }
140}
141
142/*
b454cc66 143 * The main entry.
1da177e4 144 */
778220f7 145static int __init tc_init(void)
1da177e4 146{
b454cc66
MR
147 /* Initialize the TURBOchannel bus */
148 if (tc_bus_get_info(&tc_bus))
e2afb7de 149 goto out_err;
1da177e4 150
b454cc66 151 INIT_LIST_HEAD(&tc_bus.devices);
df388556 152 dev_set_name(&tc_bus.dev, "tc");
e2afb7de
MR
153 if (device_register(&tc_bus.dev))
154 goto out_err_device;
b454cc66
MR
155
156 if (tc_bus.info.slot_size) {
157 unsigned int tc_clock = tc_get_speed(&tc_bus) / 100000;
158
159 pr_info("tc: TURBOchannel rev. %d at %d.%d MHz "
160 "(with%s parity)\n", tc_bus.info.revision,
161 tc_clock / 10, tc_clock % 10,
162 tc_bus.info.parity ? "" : "out");
163
164 tc_bus.resource[0].start = tc_bus.slot_base;
165 tc_bus.resource[0].end = tc_bus.slot_base +
166 (tc_bus.info.slot_size << 20) *
56a47da1 167 tc_bus.num_tcslots - 1;
b454cc66
MR
168 tc_bus.resource[0].name = tc_bus.name;
169 tc_bus.resource[0].flags = IORESOURCE_MEM;
170 if (request_resource(&iomem_resource,
171 &tc_bus.resource[0]) < 0) {
e2afb7de
MR
172 pr_err("tc: Cannot reserve resource\n");
173 goto out_err_device;
b454cc66
MR
174 }
175 if (tc_bus.ext_slot_size) {
176 tc_bus.resource[1].start = tc_bus.ext_slot_base;
177 tc_bus.resource[1].end = tc_bus.ext_slot_base +
178 tc_bus.ext_slot_size *
56a47da1 179 tc_bus.num_tcslots - 1;
b454cc66
MR
180 tc_bus.resource[1].name = tc_bus.name;
181 tc_bus.resource[1].flags = IORESOURCE_MEM;
182 if (request_resource(&iomem_resource,
183 &tc_bus.resource[1]) < 0) {
e2afb7de
MR
184 pr_err("tc: Cannot reserve resource\n");
185 goto out_err_resource;
b454cc66 186 }
a5fc9c0b 187 }
b454cc66
MR
188
189 tc_bus_add_devices(&tc_bus);
1da177e4 190 }
778220f7
MR
191
192 return 0;
e2afb7de
MR
193
194out_err_resource:
195 release_resource(&tc_bus.resource[0]);
196out_err_device:
197 put_device(&tc_bus.dev);
198out_err:
199 return 0;
1da177e4
LT
200}
201
202subsys_initcall(tc_init);