Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Driver for OHCI 1394 controllers |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3 | * |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 4 | * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software Foundation, |
| 18 | * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 | */ |
| 20 | |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 21 | #include <linux/bitops.h> |
Stefan Richter | 65b2742 | 2010-06-12 20:26:51 +0200 | [diff] [blame] | 22 | #include <linux/bug.h> |
Stefan Richter | e524f616 | 2007-08-20 21:58:30 +0200 | [diff] [blame] | 23 | #include <linux/compiler.h> |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 24 | #include <linux/delay.h> |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 25 | #include <linux/device.h> |
Andrew Morton | cf3e72f | 2006-12-27 14:36:37 -0800 | [diff] [blame] | 26 | #include <linux/dma-mapping.h> |
Stefan Richter | 77c9a5d | 2009-06-05 16:26:18 +0200 | [diff] [blame] | 27 | #include <linux/firewire.h> |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 28 | #include <linux/firewire-constants.h> |
Stefan Richter | a7fb60d | 2007-08-20 21:41:22 +0200 | [diff] [blame] | 29 | #include <linux/init.h> |
| 30 | #include <linux/interrupt.h> |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 31 | #include <linux/io.h> |
Stefan Richter | a7fb60d | 2007-08-20 21:41:22 +0200 | [diff] [blame] | 32 | #include <linux/kernel.h> |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 33 | #include <linux/list.h> |
Al Viro | faa2fb4 | 2007-05-15 20:36:10 +0100 | [diff] [blame] | 34 | #include <linux/mm.h> |
Stefan Richter | a7fb60d | 2007-08-20 21:41:22 +0200 | [diff] [blame] | 35 | #include <linux/module.h> |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 36 | #include <linux/moduleparam.h> |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 37 | #include <linux/mutex.h> |
Stefan Richter | a7fb60d | 2007-08-20 21:41:22 +0200 | [diff] [blame] | 38 | #include <linux/pci.h> |
Stefan Richter | fc38379 | 2009-08-28 13:25:15 +0200 | [diff] [blame] | 39 | #include <linux/pci_ids.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 40 | #include <linux/slab.h> |
Stefan Richter | c26f023 | 2007-08-20 21:40:30 +0200 | [diff] [blame] | 41 | #include <linux/spinlock.h> |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 42 | #include <linux/string.h> |
Stefan Richter | e78483c | 2010-08-02 09:33:25 +0200 | [diff] [blame] | 43 | #include <linux/time.h> |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 44 | #include <linux/vmalloc.h> |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 45 | #include <linux/workqueue.h> |
Andrew Morton | cf3e72f | 2006-12-27 14:36:37 -0800 | [diff] [blame] | 46 | |
Stefan Richter | e8ca970 | 2009-06-04 21:09:38 +0200 | [diff] [blame] | 47 | #include <asm/byteorder.h> |
Stefan Richter | c26f023 | 2007-08-20 21:40:30 +0200 | [diff] [blame] | 48 | #include <asm/page.h> |
Stefan Richter | ee71c2f | 2007-08-25 14:08:19 +0200 | [diff] [blame] | 49 | #include <asm/system.h> |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 50 | |
Stefan Richter | ea8d006 | 2008-03-01 02:42:56 +0100 | [diff] [blame] | 51 | #ifdef CONFIG_PPC_PMAC |
| 52 | #include <asm/pmac_feature.h> |
| 53 | #endif |
| 54 | |
Stefan Richter | 77c9a5d | 2009-06-05 16:26:18 +0200 | [diff] [blame] | 55 | #include "core.h" |
| 56 | #include "ohci.h" |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 57 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 58 | #define DESCRIPTOR_OUTPUT_MORE 0 |
| 59 | #define DESCRIPTOR_OUTPUT_LAST (1 << 12) |
| 60 | #define DESCRIPTOR_INPUT_MORE (2 << 12) |
| 61 | #define DESCRIPTOR_INPUT_LAST (3 << 12) |
| 62 | #define DESCRIPTOR_STATUS (1 << 11) |
| 63 | #define DESCRIPTOR_KEY_IMMEDIATE (2 << 8) |
| 64 | #define DESCRIPTOR_PING (1 << 7) |
| 65 | #define DESCRIPTOR_YY (1 << 6) |
| 66 | #define DESCRIPTOR_NO_IRQ (0 << 4) |
| 67 | #define DESCRIPTOR_IRQ_ERROR (1 << 4) |
| 68 | #define DESCRIPTOR_IRQ_ALWAYS (3 << 4) |
| 69 | #define DESCRIPTOR_BRANCH_ALWAYS (3 << 2) |
| 70 | #define DESCRIPTOR_WAIT (3 << 0) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 71 | |
| 72 | struct descriptor { |
| 73 | __le16 req_count; |
| 74 | __le16 control; |
| 75 | __le32 data_address; |
| 76 | __le32 branch_address; |
| 77 | __le16 res_count; |
| 78 | __le16 transfer_status; |
| 79 | } __attribute__((aligned(16))); |
| 80 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 81 | #define CONTROL_SET(regs) (regs) |
| 82 | #define CONTROL_CLEAR(regs) ((regs) + 4) |
| 83 | #define COMMAND_PTR(regs) ((regs) + 12) |
| 84 | #define CONTEXT_MATCH(regs) ((regs) + 16) |
Kristian Høgsberg | 72e318e | 2007-02-06 14:49:31 -0500 | [diff] [blame] | 85 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 86 | #define AR_BUFFER_SIZE (32*1024) |
| 87 | #define AR_BUFFERS_MIN DIV_ROUND_UP(AR_BUFFER_SIZE, PAGE_SIZE) |
| 88 | /* we need at least two pages for proper list management */ |
| 89 | #define AR_BUFFERS (AR_BUFFERS_MIN >= 2 ? AR_BUFFERS_MIN : 2) |
| 90 | |
| 91 | #define MAX_ASYNC_PAYLOAD 4096 |
| 92 | #define MAX_AR_PACKET_SIZE (16 + MAX_ASYNC_PAYLOAD + 4) |
| 93 | #define AR_WRAPAROUND_PAGES DIV_ROUND_UP(MAX_AR_PACKET_SIZE, PAGE_SIZE) |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 94 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 95 | struct ar_context { |
| 96 | struct fw_ohci *ohci; |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 97 | struct page *pages[AR_BUFFERS]; |
| 98 | void *buffer; |
| 99 | struct descriptor *descriptors; |
| 100 | dma_addr_t descriptors_bus; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 101 | void *pointer; |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 102 | unsigned int last_buffer_index; |
Kristian Høgsberg | 72e318e | 2007-02-06 14:49:31 -0500 | [diff] [blame] | 103 | u32 regs; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 104 | struct tasklet_struct tasklet; |
| 105 | }; |
| 106 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 107 | struct context; |
| 108 | |
| 109 | typedef int (*descriptor_callback_t)(struct context *ctx, |
| 110 | struct descriptor *d, |
| 111 | struct descriptor *last); |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 112 | |
| 113 | /* |
| 114 | * A buffer that contains a block of DMA-able coherent memory used for |
| 115 | * storing a portion of a DMA descriptor program. |
| 116 | */ |
| 117 | struct descriptor_buffer { |
| 118 | struct list_head list; |
| 119 | dma_addr_t buffer_bus; |
| 120 | size_t buffer_size; |
| 121 | size_t used; |
| 122 | struct descriptor buffer[0]; |
| 123 | }; |
| 124 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 125 | struct context { |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 126 | struct fw_ohci *ohci; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 127 | u32 regs; |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 128 | int total_allocation; |
Clemens Ladisch | 386a415 | 2010-12-24 14:42:46 +0100 | [diff] [blame] | 129 | bool running; |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 130 | bool flushing; |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 131 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 132 | /* |
| 133 | * List of page-sized buffers for storing DMA descriptors. |
| 134 | * Head of list contains buffers in use and tail of list contains |
| 135 | * free buffers. |
| 136 | */ |
| 137 | struct list_head buffer_list; |
| 138 | |
| 139 | /* |
| 140 | * Pointer to a buffer inside buffer_list that contains the tail |
| 141 | * end of the current DMA program. |
| 142 | */ |
| 143 | struct descriptor_buffer *buffer_tail; |
| 144 | |
| 145 | /* |
| 146 | * The descriptor containing the branch address of the first |
| 147 | * descriptor that has not yet been filled by the device. |
| 148 | */ |
| 149 | struct descriptor *last; |
| 150 | |
| 151 | /* |
| 152 | * The last descriptor in the DMA program. It contains the branch |
| 153 | * address that must be updated upon appending a new descriptor. |
| 154 | */ |
| 155 | struct descriptor *prev; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 156 | |
| 157 | descriptor_callback_t callback; |
| 158 | |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 159 | struct tasklet_struct tasklet; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 160 | }; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 161 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 162 | #define IT_HEADER_SY(v) ((v) << 0) |
| 163 | #define IT_HEADER_TCODE(v) ((v) << 4) |
| 164 | #define IT_HEADER_CHANNEL(v) ((v) << 8) |
| 165 | #define IT_HEADER_TAG(v) ((v) << 14) |
| 166 | #define IT_HEADER_SPEED(v) ((v) << 16) |
| 167 | #define IT_HEADER_DATA_LENGTH(v) ((v) << 16) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 168 | |
| 169 | struct iso_context { |
| 170 | struct fw_iso_context base; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 171 | struct context context; |
David Moore | 0642b65 | 2007-12-19 03:09:18 -0500 | [diff] [blame] | 172 | int excess_bytes; |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 173 | void *header; |
| 174 | size_t header_length; |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 175 | |
| 176 | u8 sync; |
| 177 | u8 tags; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 178 | }; |
| 179 | |
| 180 | #define CONFIG_ROM_SIZE 1024 |
| 181 | |
| 182 | struct fw_ohci { |
| 183 | struct fw_card card; |
| 184 | |
| 185 | __iomem char *registers; |
Kristian Høgsberg | e636fe2 | 2007-01-26 00:38:04 -0500 | [diff] [blame] | 186 | int node_id; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 187 | int generation; |
Stefan Richter | e09770d | 2008-03-11 02:23:29 +0100 | [diff] [blame] | 188 | int request_generation; /* for timestamping incoming requests */ |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 189 | unsigned quirks; |
Clemens Ladisch | a1a1132 | 2010-06-10 08:35:06 +0200 | [diff] [blame] | 190 | unsigned int pri_req_max; |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 191 | u32 bus_time; |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 192 | bool is_root; |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 193 | bool csr_state_setclear_abdicate; |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 194 | int n_ir; |
| 195 | int n_it; |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 196 | /* |
| 197 | * Spinlock for accessing fw_ohci data. Never call out of |
| 198 | * this driver with this lock held. |
| 199 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 200 | spinlock_t lock; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 201 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 202 | struct mutex phy_reg_mutex; |
| 203 | |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 204 | void *misc_buffer; |
| 205 | dma_addr_t misc_buffer_bus; |
| 206 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 207 | struct ar_context ar_request_ctx; |
| 208 | struct ar_context ar_response_ctx; |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 209 | struct context at_request_ctx; |
| 210 | struct context at_response_ctx; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 211 | |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 212 | u32 it_context_support; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 213 | u32 it_context_mask; /* unoccupied IT contexts */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 214 | struct iso_context *it_context_list; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 215 | u64 ir_context_channels; /* unoccupied channels */ |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 216 | u32 ir_context_support; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 217 | u32 ir_context_mask; /* unoccupied IR contexts */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 218 | struct iso_context *ir_context_list; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 219 | u64 mc_channels; /* channels in use by the multichannel IR context */ |
| 220 | bool mc_allocated; |
Stefan Richter | ecb1cf9 | 2010-02-21 17:57:32 +0100 | [diff] [blame] | 221 | |
| 222 | __be32 *config_rom; |
| 223 | dma_addr_t config_rom_bus; |
| 224 | __be32 *next_config_rom; |
| 225 | dma_addr_t next_config_rom_bus; |
| 226 | __be32 next_header; |
| 227 | |
| 228 | __le32 *self_id_cpu; |
| 229 | dma_addr_t self_id_bus; |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 230 | struct work_struct bus_reset_work; |
Stefan Richter | ecb1cf9 | 2010-02-21 17:57:32 +0100 | [diff] [blame] | 231 | |
| 232 | u32 self_id_buffer[512]; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 233 | }; |
| 234 | |
Adrian Bunk | 95688e9 | 2007-01-22 19:17:37 +0100 | [diff] [blame] | 235 | static inline struct fw_ohci *fw_ohci(struct fw_card *card) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 236 | { |
| 237 | return container_of(card, struct fw_ohci, card); |
| 238 | } |
| 239 | |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 240 | #define IT_CONTEXT_CYCLE_MATCH_ENABLE 0x80000000 |
| 241 | #define IR_CONTEXT_BUFFER_FILL 0x80000000 |
| 242 | #define IR_CONTEXT_ISOCH_HEADER 0x40000000 |
| 243 | #define IR_CONTEXT_CYCLE_MATCH_ENABLE 0x20000000 |
| 244 | #define IR_CONTEXT_MULTI_CHANNEL_MODE 0x10000000 |
| 245 | #define IR_CONTEXT_DUAL_BUFFER_MODE 0x08000000 |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 246 | |
| 247 | #define CONTEXT_RUN 0x8000 |
| 248 | #define CONTEXT_WAKE 0x1000 |
| 249 | #define CONTEXT_DEAD 0x0800 |
| 250 | #define CONTEXT_ACTIVE 0x0400 |
| 251 | |
Stefan Richter | 8b7b6af | 2009-01-20 19:10:58 +0100 | [diff] [blame] | 252 | #define OHCI1394_MAX_AT_REQ_RETRIES 0xf |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 253 | #define OHCI1394_MAX_AT_RESP_RETRIES 0x2 |
| 254 | #define OHCI1394_MAX_PHYS_RESP_RETRIES 0x8 |
| 255 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 256 | #define OHCI1394_REGISTER_SIZE 0x800 |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 257 | #define OHCI1394_PCI_HCI_Control 0x40 |
| 258 | #define SELF_ID_BUF_SIZE 0x800 |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 259 | #define OHCI_TCODE_PHY_PACKET 0x0e |
Kristian Høgsberg | e364cf4 | 2007-02-16 17:34:49 -0500 | [diff] [blame] | 260 | #define OHCI_VERSION_1_1 0x010010 |
Kristian Høgsberg | 0edeefd | 2007-01-26 00:38:49 -0500 | [diff] [blame] | 261 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 262 | static char ohci_driver_name[] = KBUILD_MODNAME; |
| 263 | |
Stefan Richter | 9993e0f | 2010-12-07 20:32:40 +0100 | [diff] [blame] | 264 | #define PCI_DEVICE_ID_AGERE_FW643 0x5901 |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 265 | #define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380 |
Clemens Ladisch | 8301b91 | 2010-03-17 11:07:55 +0100 | [diff] [blame] | 266 | #define PCI_DEVICE_ID_TI_TSB12LV22 0x8009 |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 267 | #define PCI_DEVICE_ID_TI_TSB12LV26 0x8020 |
| 268 | #define PCI_DEVICE_ID_TI_TSB82AA2 0x8025 |
Stefan Richter | 7f7e3711 | 2011-07-10 00:23:03 +0200 | [diff] [blame] | 269 | #define PCI_VENDOR_ID_PINNACLE_SYSTEMS 0x11bd |
Clemens Ladisch | 8301b91 | 2010-03-17 11:07:55 +0100 | [diff] [blame] | 270 | |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 271 | #define QUIRK_CYCLE_TIMER 1 |
| 272 | #define QUIRK_RESET_PACKET 2 |
| 273 | #define QUIRK_BE_HEADERS 4 |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 274 | #define QUIRK_NO_1394A 8 |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 275 | #define QUIRK_NO_MSI 16 |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 276 | #define QUIRK_TI_SLLZ059 32 |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 277 | |
| 278 | /* In case of multiple matches in ohci_quirks[], only the first one is used. */ |
| 279 | static const struct { |
Stefan Richter | 9993e0f | 2010-12-07 20:32:40 +0100 | [diff] [blame] | 280 | unsigned short vendor, device, revision, flags; |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 281 | } ohci_quirks[] = { |
Stefan Richter | 9993e0f | 2010-12-07 20:32:40 +0100 | [diff] [blame] | 282 | {PCI_VENDOR_ID_AL, PCI_ANY_ID, PCI_ANY_ID, |
| 283 | QUIRK_CYCLE_TIMER}, |
| 284 | |
| 285 | {PCI_VENDOR_ID_APPLE, PCI_DEVICE_ID_APPLE_UNI_N_FW, PCI_ANY_ID, |
| 286 | QUIRK_BE_HEADERS}, |
| 287 | |
| 288 | {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6, |
| 289 | QUIRK_NO_MSI}, |
| 290 | |
| 291 | {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID, |
| 292 | QUIRK_NO_MSI}, |
| 293 | |
| 294 | {PCI_VENDOR_ID_NEC, PCI_ANY_ID, PCI_ANY_ID, |
| 295 | QUIRK_CYCLE_TIMER}, |
| 296 | |
Ming Lei | f39aa30 | 2011-08-31 10:45:46 +0800 | [diff] [blame] | 297 | {PCI_VENDOR_ID_O2, PCI_ANY_ID, PCI_ANY_ID, |
| 298 | QUIRK_NO_MSI}, |
| 299 | |
Stefan Richter | 9993e0f | 2010-12-07 20:32:40 +0100 | [diff] [blame] | 300 | {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID, |
| 301 | QUIRK_CYCLE_TIMER}, |
| 302 | |
| 303 | {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID, |
| 304 | QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A}, |
| 305 | |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 306 | {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV26, PCI_ANY_ID, |
| 307 | QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059}, |
| 308 | |
| 309 | {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB82AA2, PCI_ANY_ID, |
| 310 | QUIRK_RESET_PACKET | QUIRK_TI_SLLZ059}, |
| 311 | |
Stefan Richter | 9993e0f | 2010-12-07 20:32:40 +0100 | [diff] [blame] | 312 | {PCI_VENDOR_ID_TI, PCI_ANY_ID, PCI_ANY_ID, |
| 313 | QUIRK_RESET_PACKET}, |
| 314 | |
| 315 | {PCI_VENDOR_ID_VIA, PCI_ANY_ID, PCI_ANY_ID, |
| 316 | QUIRK_CYCLE_TIMER | QUIRK_NO_MSI}, |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 317 | }; |
| 318 | |
Stefan Richter | 3e9cc2f | 2010-02-21 17:58:29 +0100 | [diff] [blame] | 319 | /* This overrides anything that was found in ohci_quirks[]. */ |
| 320 | static int param_quirks; |
| 321 | module_param_named(quirks, param_quirks, int, 0644); |
| 322 | MODULE_PARM_DESC(quirks, "Chip quirks (default = 0" |
| 323 | ", nonatomic cycle timer = " __stringify(QUIRK_CYCLE_TIMER) |
| 324 | ", reset packet generation = " __stringify(QUIRK_RESET_PACKET) |
| 325 | ", AR/selfID endianess = " __stringify(QUIRK_BE_HEADERS) |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 326 | ", no 1394a enhancements = " __stringify(QUIRK_NO_1394A) |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 327 | ", disable MSI = " __stringify(QUIRK_NO_MSI) |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 328 | ", workaround for TI SLLZ059 errata = " __stringify(QUIRK_TI_SLLZ059) |
Stefan Richter | 3e9cc2f | 2010-02-21 17:58:29 +0100 | [diff] [blame] | 329 | ")"); |
| 330 | |
Stefan Richter | a007bb8 | 2008-04-07 22:33:35 +0200 | [diff] [blame] | 331 | #define OHCI_PARAM_DEBUG_AT_AR 1 |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 332 | #define OHCI_PARAM_DEBUG_SELFIDS 2 |
Stefan Richter | a007bb8 | 2008-04-07 22:33:35 +0200 | [diff] [blame] | 333 | #define OHCI_PARAM_DEBUG_IRQS 4 |
| 334 | #define OHCI_PARAM_DEBUG_BUSRESETS 8 /* only effective before chip init */ |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 335 | |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 336 | #ifdef CONFIG_FIREWIRE_OHCI_DEBUG |
| 337 | |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 338 | static int param_debug; |
| 339 | module_param_named(debug, param_debug, int, 0644); |
| 340 | MODULE_PARM_DESC(debug, "Verbose logging (default = 0" |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 341 | ", AT/AR events = " __stringify(OHCI_PARAM_DEBUG_AT_AR) |
Stefan Richter | a007bb8 | 2008-04-07 22:33:35 +0200 | [diff] [blame] | 342 | ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS) |
| 343 | ", IRQs = " __stringify(OHCI_PARAM_DEBUG_IRQS) |
| 344 | ", busReset events = " __stringify(OHCI_PARAM_DEBUG_BUSRESETS) |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 345 | ", or a combination, or all = -1)"); |
| 346 | |
| 347 | static void log_irqs(u32 evt) |
| 348 | { |
Stefan Richter | a007bb8 | 2008-04-07 22:33:35 +0200 | [diff] [blame] | 349 | if (likely(!(param_debug & |
| 350 | (OHCI_PARAM_DEBUG_IRQS | OHCI_PARAM_DEBUG_BUSRESETS)))) |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 351 | return; |
| 352 | |
Stefan Richter | a007bb8 | 2008-04-07 22:33:35 +0200 | [diff] [blame] | 353 | if (!(param_debug & OHCI_PARAM_DEBUG_IRQS) && |
| 354 | !(evt & OHCI1394_busReset)) |
| 355 | return; |
| 356 | |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 357 | fw_notify("IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt, |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 358 | evt & OHCI1394_selfIDComplete ? " selfID" : "", |
| 359 | evt & OHCI1394_RQPkt ? " AR_req" : "", |
| 360 | evt & OHCI1394_RSPkt ? " AR_resp" : "", |
| 361 | evt & OHCI1394_reqTxComplete ? " AT_req" : "", |
| 362 | evt & OHCI1394_respTxComplete ? " AT_resp" : "", |
| 363 | evt & OHCI1394_isochRx ? " IR" : "", |
| 364 | evt & OHCI1394_isochTx ? " IT" : "", |
| 365 | evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "", |
| 366 | evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "", |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 367 | evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "", |
Jay Fenlason | 5ed1f32 | 2009-11-17 12:29:17 -0500 | [diff] [blame] | 368 | evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "", |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 369 | evt & OHCI1394_regAccessFail ? " regAccessFail" : "", |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 370 | evt & OHCI1394_unrecoverableError ? " unrecoverableError" : "", |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 371 | evt & OHCI1394_busReset ? " busReset" : "", |
| 372 | evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt | |
| 373 | OHCI1394_RSPkt | OHCI1394_reqTxComplete | |
| 374 | OHCI1394_respTxComplete | OHCI1394_isochRx | |
| 375 | OHCI1394_isochTx | OHCI1394_postedWriteErr | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 376 | OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds | |
| 377 | OHCI1394_cycleInconsistent | |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 378 | OHCI1394_regAccessFail | OHCI1394_busReset) |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 379 | ? " ?" : ""); |
| 380 | } |
| 381 | |
| 382 | static const char *speed[] = { |
| 383 | [0] = "S100", [1] = "S200", [2] = "S400", [3] = "beta", |
| 384 | }; |
| 385 | static const char *power[] = { |
| 386 | [0] = "+0W", [1] = "+15W", [2] = "+30W", [3] = "+45W", |
| 387 | [4] = "-3W", [5] = " ?W", [6] = "-3..-6W", [7] = "-3..-10W", |
| 388 | }; |
| 389 | static const char port[] = { '.', '-', 'p', 'c', }; |
| 390 | |
| 391 | static char _p(u32 *s, int shift) |
| 392 | { |
| 393 | return port[*s >> shift & 3]; |
| 394 | } |
| 395 | |
Stefan Richter | 08ddb2f | 2008-04-11 00:51:15 +0200 | [diff] [blame] | 396 | static void log_selfids(int node_id, int generation, int self_id_count, u32 *s) |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 397 | { |
| 398 | if (likely(!(param_debug & OHCI_PARAM_DEBUG_SELFIDS))) |
| 399 | return; |
| 400 | |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 401 | fw_notify("%d selfIDs, generation %d, local node ID %04x\n", |
| 402 | self_id_count, generation, node_id); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 403 | |
| 404 | for (; self_id_count--; ++s) |
| 405 | if ((*s & 1 << 23) == 0) |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 406 | fw_notify("selfID 0: %08x, phy %d [%c%c%c] " |
| 407 | "%s gc=%d %s %s%s%s\n", |
| 408 | *s, *s >> 24 & 63, _p(s, 6), _p(s, 4), _p(s, 2), |
| 409 | speed[*s >> 14 & 3], *s >> 16 & 63, |
| 410 | power[*s >> 8 & 7], *s >> 22 & 1 ? "L" : "", |
| 411 | *s >> 11 & 1 ? "c" : "", *s & 2 ? "i" : ""); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 412 | else |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 413 | fw_notify("selfID n: %08x, phy %d [%c%c%c%c%c%c%c%c]\n", |
| 414 | *s, *s >> 24 & 63, |
| 415 | _p(s, 16), _p(s, 14), _p(s, 12), _p(s, 10), |
| 416 | _p(s, 8), _p(s, 6), _p(s, 4), _p(s, 2)); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | static const char *evts[] = { |
| 420 | [0x00] = "evt_no_status", [0x01] = "-reserved-", |
| 421 | [0x02] = "evt_long_packet", [0x03] = "evt_missing_ack", |
| 422 | [0x04] = "evt_underrun", [0x05] = "evt_overrun", |
| 423 | [0x06] = "evt_descriptor_read", [0x07] = "evt_data_read", |
| 424 | [0x08] = "evt_data_write", [0x09] = "evt_bus_reset", |
| 425 | [0x0a] = "evt_timeout", [0x0b] = "evt_tcode_err", |
| 426 | [0x0c] = "-reserved-", [0x0d] = "-reserved-", |
| 427 | [0x0e] = "evt_unknown", [0x0f] = "evt_flushed", |
| 428 | [0x10] = "-reserved-", [0x11] = "ack_complete", |
| 429 | [0x12] = "ack_pending ", [0x13] = "-reserved-", |
| 430 | [0x14] = "ack_busy_X", [0x15] = "ack_busy_A", |
| 431 | [0x16] = "ack_busy_B", [0x17] = "-reserved-", |
| 432 | [0x18] = "-reserved-", [0x19] = "-reserved-", |
| 433 | [0x1a] = "-reserved-", [0x1b] = "ack_tardy", |
| 434 | [0x1c] = "-reserved-", [0x1d] = "ack_data_error", |
| 435 | [0x1e] = "ack_type_error", [0x1f] = "-reserved-", |
| 436 | [0x20] = "pending/cancelled", |
| 437 | }; |
| 438 | static const char *tcodes[] = { |
| 439 | [0x0] = "QW req", [0x1] = "BW req", |
| 440 | [0x2] = "W resp", [0x3] = "-reserved-", |
| 441 | [0x4] = "QR req", [0x5] = "BR req", |
| 442 | [0x6] = "QR resp", [0x7] = "BR resp", |
| 443 | [0x8] = "cycle start", [0x9] = "Lk req", |
| 444 | [0xa] = "async stream packet", [0xb] = "Lk resp", |
| 445 | [0xc] = "-reserved-", [0xd] = "-reserved-", |
| 446 | [0xe] = "link internal", [0xf] = "-reserved-", |
| 447 | }; |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 448 | |
| 449 | static void log_ar_at_event(char dir, int speed, u32 *header, int evt) |
| 450 | { |
| 451 | int tcode = header[0] >> 4 & 0xf; |
| 452 | char specific[12]; |
| 453 | |
| 454 | if (likely(!(param_debug & OHCI_PARAM_DEBUG_AT_AR))) |
| 455 | return; |
| 456 | |
| 457 | if (unlikely(evt >= ARRAY_SIZE(evts))) |
| 458 | evt = 0x1f; |
| 459 | |
Stefan Richter | 08ddb2f | 2008-04-11 00:51:15 +0200 | [diff] [blame] | 460 | if (evt == OHCI1394_evt_bus_reset) { |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 461 | fw_notify("A%c evt_bus_reset, generation %d\n", |
| 462 | dir, (header[2] >> 16) & 0xff); |
Stefan Richter | 08ddb2f | 2008-04-11 00:51:15 +0200 | [diff] [blame] | 463 | return; |
| 464 | } |
| 465 | |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 466 | switch (tcode) { |
| 467 | case 0x0: case 0x6: case 0x8: |
| 468 | snprintf(specific, sizeof(specific), " = %08x", |
| 469 | be32_to_cpu((__force __be32)header[3])); |
| 470 | break; |
| 471 | case 0x1: case 0x5: case 0x7: case 0x9: case 0xb: |
| 472 | snprintf(specific, sizeof(specific), " %x,%x", |
| 473 | header[3] >> 16, header[3] & 0xffff); |
| 474 | break; |
| 475 | default: |
| 476 | specific[0] = '\0'; |
| 477 | } |
| 478 | |
| 479 | switch (tcode) { |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 480 | case 0xa: |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 481 | fw_notify("A%c %s, %s\n", dir, evts[evt], tcodes[tcode]); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 482 | break; |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 483 | case 0xe: |
| 484 | fw_notify("A%c %s, PHY %08x %08x\n", |
| 485 | dir, evts[evt], header[1], header[2]); |
| 486 | break; |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 487 | case 0x0: case 0x1: case 0x4: case 0x5: case 0x9: |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 488 | fw_notify("A%c spd %x tl %02x, " |
| 489 | "%04x -> %04x, %s, " |
| 490 | "%s, %04x%08x%s\n", |
| 491 | dir, speed, header[0] >> 10 & 0x3f, |
| 492 | header[1] >> 16, header[0] >> 16, evts[evt], |
| 493 | tcodes[tcode], header[1] & 0xffff, header[2], specific); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 494 | break; |
| 495 | default: |
Stefan Richter | 161b96e | 2008-06-14 14:23:43 +0200 | [diff] [blame] | 496 | fw_notify("A%c spd %x tl %02x, " |
| 497 | "%04x -> %04x, %s, " |
| 498 | "%s%s\n", |
| 499 | dir, speed, header[0] >> 10 & 0x3f, |
| 500 | header[1] >> 16, header[0] >> 16, evts[evt], |
| 501 | tcodes[tcode], specific); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 502 | } |
| 503 | } |
| 504 | |
| 505 | #else |
| 506 | |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 507 | #define param_debug 0 |
| 508 | static inline void log_irqs(u32 evt) {} |
| 509 | static inline void log_selfids(int node_id, int generation, int self_id_count, u32 *s) {} |
| 510 | static inline void log_ar_at_event(char dir, int speed, u32 *header, int evt) {} |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 511 | |
| 512 | #endif /* CONFIG_FIREWIRE_OHCI_DEBUG */ |
| 513 | |
Adrian Bunk | 95688e9 | 2007-01-22 19:17:37 +0100 | [diff] [blame] | 514 | static inline void reg_write(const struct fw_ohci *ohci, int offset, u32 data) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 515 | { |
| 516 | writel(data, ohci->registers + offset); |
| 517 | } |
| 518 | |
Adrian Bunk | 95688e9 | 2007-01-22 19:17:37 +0100 | [diff] [blame] | 519 | static inline u32 reg_read(const struct fw_ohci *ohci, int offset) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 520 | { |
| 521 | return readl(ohci->registers + offset); |
| 522 | } |
| 523 | |
Adrian Bunk | 95688e9 | 2007-01-22 19:17:37 +0100 | [diff] [blame] | 524 | static inline void flush_writes(const struct fw_ohci *ohci) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 525 | { |
| 526 | /* Do a dummy read to flush writes. */ |
| 527 | reg_read(ohci, OHCI1394_Version); |
| 528 | } |
| 529 | |
Stefan Richter | b14c369 | 2011-06-21 15:24:26 +0200 | [diff] [blame] | 530 | /* |
| 531 | * Beware! read_phy_reg(), write_phy_reg(), update_phy_reg(), and |
| 532 | * read_paged_phy_reg() require the caller to hold ohci->phy_reg_mutex. |
| 533 | * In other words, only use ohci_read_phy_reg() and ohci_update_phy_reg() |
| 534 | * directly. Exceptions are intrinsically serialized contexts like pci_probe. |
| 535 | */ |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 536 | static int read_phy_reg(struct fw_ohci *ohci, int addr) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 537 | { |
Clemens Ladisch | 4a96b4f | 2010-04-04 15:19:52 +0200 | [diff] [blame] | 538 | u32 val; |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 539 | int i; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 540 | |
| 541 | reg_write(ohci, OHCI1394_PhyControl, OHCI1394_PhyControl_Read(addr)); |
Clemens Ladisch | 153e397 | 2010-06-10 08:22:07 +0200 | [diff] [blame] | 542 | for (i = 0; i < 3 + 100; i++) { |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 543 | val = reg_read(ohci, OHCI1394_PhyControl); |
Stefan Richter | 215fa44 | 2011-06-22 21:05:08 +0200 | [diff] [blame] | 544 | if (!~val) |
| 545 | return -ENODEV; /* Card was ejected. */ |
| 546 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 547 | if (val & OHCI1394_PhyControl_ReadDone) |
| 548 | return OHCI1394_PhyControl_ReadData(val); |
| 549 | |
Clemens Ladisch | 153e397 | 2010-06-10 08:22:07 +0200 | [diff] [blame] | 550 | /* |
| 551 | * Try a few times without waiting. Sleeping is necessary |
| 552 | * only when the link/PHY interface is busy. |
| 553 | */ |
| 554 | if (i >= 3) |
| 555 | msleep(1); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 556 | } |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 557 | fw_error("failed to read phy reg\n"); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 558 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 559 | return -EBUSY; |
| 560 | } |
Clemens Ladisch | 4a96b4f | 2010-04-04 15:19:52 +0200 | [diff] [blame] | 561 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 562 | static int write_phy_reg(const struct fw_ohci *ohci, int addr, u32 val) |
| 563 | { |
| 564 | int i; |
| 565 | |
| 566 | reg_write(ohci, OHCI1394_PhyControl, |
| 567 | OHCI1394_PhyControl_Write(addr, val)); |
Clemens Ladisch | 153e397 | 2010-06-10 08:22:07 +0200 | [diff] [blame] | 568 | for (i = 0; i < 3 + 100; i++) { |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 569 | val = reg_read(ohci, OHCI1394_PhyControl); |
Stefan Richter | 215fa44 | 2011-06-22 21:05:08 +0200 | [diff] [blame] | 570 | if (!~val) |
| 571 | return -ENODEV; /* Card was ejected. */ |
| 572 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 573 | if (!(val & OHCI1394_PhyControl_WritePending)) |
| 574 | return 0; |
| 575 | |
Clemens Ladisch | 153e397 | 2010-06-10 08:22:07 +0200 | [diff] [blame] | 576 | if (i >= 3) |
| 577 | msleep(1); |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 578 | } |
| 579 | fw_error("failed to write phy reg\n"); |
| 580 | |
| 581 | return -EBUSY; |
Clemens Ladisch | 4a96b4f | 2010-04-04 15:19:52 +0200 | [diff] [blame] | 582 | } |
| 583 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 584 | static int update_phy_reg(struct fw_ohci *ohci, int addr, |
| 585 | int clear_bits, int set_bits) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 586 | { |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 587 | int ret = read_phy_reg(ohci, addr); |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 588 | if (ret < 0) |
| 589 | return ret; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 590 | |
Clemens Ladisch | e7014da | 2010-04-01 16:40:18 +0200 | [diff] [blame] | 591 | /* |
| 592 | * The interrupt status bits are cleared by writing a one bit. |
| 593 | * Avoid clearing them unless explicitly requested in set_bits. |
| 594 | */ |
| 595 | if (addr == 5) |
| 596 | clear_bits |= PHY_INT_STATUS_BITS; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 597 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 598 | return write_phy_reg(ohci, addr, (ret & ~clear_bits) | set_bits); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 599 | } |
| 600 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 601 | static int read_paged_phy_reg(struct fw_ohci *ohci, int page, int addr) |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 602 | { |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 603 | int ret; |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 604 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 605 | ret = update_phy_reg(ohci, 7, PHY_PAGE_SELECT, page << 5); |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 606 | if (ret < 0) |
| 607 | return ret; |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 608 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 609 | return read_phy_reg(ohci, addr); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 610 | } |
| 611 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 612 | static int ohci_read_phy_reg(struct fw_card *card, int addr) |
| 613 | { |
| 614 | struct fw_ohci *ohci = fw_ohci(card); |
| 615 | int ret; |
| 616 | |
| 617 | mutex_lock(&ohci->phy_reg_mutex); |
| 618 | ret = read_phy_reg(ohci, addr); |
| 619 | mutex_unlock(&ohci->phy_reg_mutex); |
| 620 | |
| 621 | return ret; |
| 622 | } |
| 623 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 624 | static int ohci_update_phy_reg(struct fw_card *card, int addr, |
| 625 | int clear_bits, int set_bits) |
| 626 | { |
| 627 | struct fw_ohci *ohci = fw_ohci(card); |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 628 | int ret; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 629 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 630 | mutex_lock(&ohci->phy_reg_mutex); |
| 631 | ret = update_phy_reg(ohci, addr, clear_bits, set_bits); |
| 632 | mutex_unlock(&ohci->phy_reg_mutex); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 633 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 634 | return ret; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 635 | } |
| 636 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 637 | static inline dma_addr_t ar_buffer_bus(struct ar_context *ctx, unsigned int i) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 638 | { |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 639 | return page_private(ctx->pages[i]); |
| 640 | } |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 641 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 642 | static void ar_context_link_page(struct ar_context *ctx, unsigned int index) |
| 643 | { |
| 644 | struct descriptor *d; |
| 645 | |
| 646 | d = &ctx->descriptors[index]; |
| 647 | d->branch_address &= cpu_to_le32(~0xf); |
| 648 | d->res_count = cpu_to_le16(PAGE_SIZE); |
| 649 | d->transfer_status = 0; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 650 | |
Stefan Richter | 071595e | 2010-07-27 13:20:33 +0200 | [diff] [blame] | 651 | wmb(); /* finish init of new descriptors before branch_address update */ |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 652 | d = &ctx->descriptors[ctx->last_buffer_index]; |
| 653 | d->branch_address |= cpu_to_le32(1); |
| 654 | |
| 655 | ctx->last_buffer_index = index; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 656 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 657 | reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE); |
Clemens Ladisch | 837596a | 2010-10-25 11:42:42 +0200 | [diff] [blame] | 658 | } |
| 659 | |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 660 | static void ar_context_release(struct ar_context *ctx) |
| 661 | { |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 662 | unsigned int i; |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 663 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 664 | if (ctx->buffer) |
| 665 | vm_unmap_ram(ctx->buffer, AR_BUFFERS + AR_WRAPAROUND_PAGES); |
| 666 | |
| 667 | for (i = 0; i < AR_BUFFERS; i++) |
| 668 | if (ctx->pages[i]) { |
| 669 | dma_unmap_page(ctx->ohci->card.device, |
| 670 | ar_buffer_bus(ctx, i), |
| 671 | PAGE_SIZE, DMA_FROM_DEVICE); |
| 672 | __free_page(ctx->pages[i]); |
| 673 | } |
| 674 | } |
| 675 | |
| 676 | static void ar_context_abort(struct ar_context *ctx, const char *error_msg) |
| 677 | { |
| 678 | if (reg_read(ctx->ohci, CONTROL_CLEAR(ctx->regs)) & CONTEXT_RUN) { |
| 679 | reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN); |
| 680 | flush_writes(ctx->ohci); |
| 681 | |
| 682 | fw_error("AR error: %s; DMA stopped\n", error_msg); |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 683 | } |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 684 | /* FIXME: restart? */ |
| 685 | } |
| 686 | |
| 687 | static inline unsigned int ar_next_buffer_index(unsigned int index) |
| 688 | { |
| 689 | return (index + 1) % AR_BUFFERS; |
| 690 | } |
| 691 | |
| 692 | static inline unsigned int ar_prev_buffer_index(unsigned int index) |
| 693 | { |
| 694 | return (index - 1 + AR_BUFFERS) % AR_BUFFERS; |
| 695 | } |
| 696 | |
| 697 | static inline unsigned int ar_first_buffer_index(struct ar_context *ctx) |
| 698 | { |
| 699 | return ar_next_buffer_index(ctx->last_buffer_index); |
| 700 | } |
| 701 | |
| 702 | /* |
| 703 | * We search for the buffer that contains the last AR packet DMA data written |
| 704 | * by the controller. |
| 705 | */ |
| 706 | static unsigned int ar_search_last_active_buffer(struct ar_context *ctx, |
| 707 | unsigned int *buffer_offset) |
| 708 | { |
| 709 | unsigned int i, next_i, last = ctx->last_buffer_index; |
| 710 | __le16 res_count, next_res_count; |
| 711 | |
| 712 | i = ar_first_buffer_index(ctx); |
| 713 | res_count = ACCESS_ONCE(ctx->descriptors[i].res_count); |
| 714 | |
| 715 | /* A buffer that is not yet completely filled must be the last one. */ |
| 716 | while (i != last && res_count == 0) { |
| 717 | |
| 718 | /* Peek at the next descriptor. */ |
| 719 | next_i = ar_next_buffer_index(i); |
| 720 | rmb(); /* read descriptors in order */ |
| 721 | next_res_count = ACCESS_ONCE( |
| 722 | ctx->descriptors[next_i].res_count); |
| 723 | /* |
| 724 | * If the next descriptor is still empty, we must stop at this |
| 725 | * descriptor. |
| 726 | */ |
| 727 | if (next_res_count == cpu_to_le16(PAGE_SIZE)) { |
| 728 | /* |
| 729 | * The exception is when the DMA data for one packet is |
| 730 | * split over three buffers; in this case, the middle |
| 731 | * buffer's descriptor might be never updated by the |
| 732 | * controller and look still empty, and we have to peek |
| 733 | * at the third one. |
| 734 | */ |
| 735 | if (MAX_AR_PACKET_SIZE > PAGE_SIZE && i != last) { |
| 736 | next_i = ar_next_buffer_index(next_i); |
| 737 | rmb(); |
| 738 | next_res_count = ACCESS_ONCE( |
| 739 | ctx->descriptors[next_i].res_count); |
| 740 | if (next_res_count != cpu_to_le16(PAGE_SIZE)) |
| 741 | goto next_buffer_is_active; |
| 742 | } |
| 743 | |
| 744 | break; |
| 745 | } |
| 746 | |
| 747 | next_buffer_is_active: |
| 748 | i = next_i; |
| 749 | res_count = next_res_count; |
| 750 | } |
| 751 | |
| 752 | rmb(); /* read res_count before the DMA data */ |
| 753 | |
| 754 | *buffer_offset = PAGE_SIZE - le16_to_cpu(res_count); |
| 755 | if (*buffer_offset > PAGE_SIZE) { |
| 756 | *buffer_offset = 0; |
| 757 | ar_context_abort(ctx, "corrupted descriptor"); |
| 758 | } |
| 759 | |
| 760 | return i; |
| 761 | } |
| 762 | |
| 763 | static void ar_sync_buffers_for_cpu(struct ar_context *ctx, |
| 764 | unsigned int end_buffer_index, |
| 765 | unsigned int end_buffer_offset) |
| 766 | { |
| 767 | unsigned int i; |
| 768 | |
| 769 | i = ar_first_buffer_index(ctx); |
| 770 | while (i != end_buffer_index) { |
| 771 | dma_sync_single_for_cpu(ctx->ohci->card.device, |
| 772 | ar_buffer_bus(ctx, i), |
| 773 | PAGE_SIZE, DMA_FROM_DEVICE); |
| 774 | i = ar_next_buffer_index(i); |
| 775 | } |
| 776 | if (end_buffer_offset > 0) |
| 777 | dma_sync_single_for_cpu(ctx->ohci->card.device, |
| 778 | ar_buffer_bus(ctx, i), |
| 779 | end_buffer_offset, DMA_FROM_DEVICE); |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 780 | } |
| 781 | |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 782 | #if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32) |
| 783 | #define cond_le32_to_cpu(v) \ |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 784 | (ohci->quirks & QUIRK_BE_HEADERS ? (__force __u32)(v) : le32_to_cpu(v)) |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 785 | #else |
| 786 | #define cond_le32_to_cpu(v) le32_to_cpu(v) |
| 787 | #endif |
| 788 | |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 789 | static __le32 *handle_ar_packet(struct ar_context *ctx, __le32 *buffer) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 790 | { |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 791 | struct fw_ohci *ohci = ctx->ohci; |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 792 | struct fw_packet p; |
| 793 | u32 status, length, tcode; |
Stefan Richter | 4328656 | 2008-03-11 21:22:26 +0100 | [diff] [blame] | 794 | int evt; |
Kristian Høgsberg | 0edeefd | 2007-01-26 00:38:49 -0500 | [diff] [blame] | 795 | |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 796 | p.header[0] = cond_le32_to_cpu(buffer[0]); |
| 797 | p.header[1] = cond_le32_to_cpu(buffer[1]); |
| 798 | p.header[2] = cond_le32_to_cpu(buffer[2]); |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 799 | |
| 800 | tcode = (p.header[0] >> 4) & 0x0f; |
| 801 | switch (tcode) { |
| 802 | case TCODE_WRITE_QUADLET_REQUEST: |
| 803 | case TCODE_READ_QUADLET_RESPONSE: |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 804 | p.header[3] = (__force __u32) buffer[3]; |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 805 | p.header_length = 16; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 806 | p.payload_length = 0; |
| 807 | break; |
| 808 | |
| 809 | case TCODE_READ_BLOCK_REQUEST : |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 810 | p.header[3] = cond_le32_to_cpu(buffer[3]); |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 811 | p.header_length = 16; |
| 812 | p.payload_length = 0; |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 813 | break; |
| 814 | |
| 815 | case TCODE_WRITE_BLOCK_REQUEST: |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 816 | case TCODE_READ_BLOCK_RESPONSE: |
| 817 | case TCODE_LOCK_REQUEST: |
| 818 | case TCODE_LOCK_RESPONSE: |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 819 | p.header[3] = cond_le32_to_cpu(buffer[3]); |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 820 | p.header_length = 16; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 821 | p.payload_length = p.header[3] >> 16; |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 822 | if (p.payload_length > MAX_ASYNC_PAYLOAD) { |
| 823 | ar_context_abort(ctx, "invalid packet length"); |
| 824 | return NULL; |
| 825 | } |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 826 | break; |
| 827 | |
| 828 | case TCODE_WRITE_RESPONSE: |
| 829 | case TCODE_READ_QUADLET_REQUEST: |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 830 | case OHCI_TCODE_PHY_PACKET: |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 831 | p.header_length = 12; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 832 | p.payload_length = 0; |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 833 | break; |
Stefan Richter | ccff962 | 2008-05-31 19:36:06 +0200 | [diff] [blame] | 834 | |
| 835 | default: |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 836 | ar_context_abort(ctx, "invalid tcode"); |
| 837 | return NULL; |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 838 | } |
| 839 | |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 840 | p.payload = (void *) buffer + p.header_length; |
| 841 | |
| 842 | /* FIXME: What to do about evt_* errors? */ |
| 843 | length = (p.header_length + p.payload_length + 3) / 4; |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 844 | status = cond_le32_to_cpu(buffer[length]); |
Stefan Richter | 4328656 | 2008-03-11 21:22:26 +0100 | [diff] [blame] | 845 | evt = (status >> 16) & 0x1f; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 846 | |
Stefan Richter | 4328656 | 2008-03-11 21:22:26 +0100 | [diff] [blame] | 847 | p.ack = evt - 16; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 848 | p.speed = (status >> 21) & 0x7; |
| 849 | p.timestamp = status & 0xffff; |
| 850 | p.generation = ohci->request_generation; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 851 | |
Stefan Richter | 4328656 | 2008-03-11 21:22:26 +0100 | [diff] [blame] | 852 | log_ar_at_event('R', p.speed, p.header, evt); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 853 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 854 | /* |
Stefan Richter | a4dc090 | 2010-08-28 14:21:26 +0200 | [diff] [blame] | 855 | * Several controllers, notably from NEC and VIA, forget to |
| 856 | * write ack_complete status at PHY packet reception. |
| 857 | */ |
| 858 | if (evt == OHCI1394_evt_no_status && |
| 859 | (p.header[0] & 0xff) == (OHCI1394_phy_tcode << 4)) |
| 860 | p.ack = ACK_COMPLETE; |
| 861 | |
| 862 | /* |
| 863 | * The OHCI bus reset handler synthesizes a PHY packet with |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 864 | * the new generation number when a bus reset happens (see |
| 865 | * section 8.4.2.3). This helps us determine when a request |
| 866 | * was received and make sure we send the response in the same |
| 867 | * generation. We only need this for requests; for responses |
| 868 | * we use the unique tlabel for finding the matching |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 869 | * request. |
Stefan Richter | d34316a | 2008-04-12 22:31:25 +0200 | [diff] [blame] | 870 | * |
| 871 | * Alas some chips sometimes emit bus reset packets with a |
| 872 | * wrong generation. We set the correct generation for these |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 873 | * at a slightly incorrect time (in bus_reset_work). |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 874 | */ |
Stefan Richter | d34316a | 2008-04-12 22:31:25 +0200 | [diff] [blame] | 875 | if (evt == OHCI1394_evt_bus_reset) { |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 876 | if (!(ohci->quirks & QUIRK_RESET_PACKET)) |
Stefan Richter | d34316a | 2008-04-12 22:31:25 +0200 | [diff] [blame] | 877 | ohci->request_generation = (p.header[2] >> 16) & 0xff; |
| 878 | } else if (ctx == &ohci->ar_request_ctx) { |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 879 | fw_core_handle_request(&ohci->card, &p); |
Stefan Richter | d34316a | 2008-04-12 22:31:25 +0200 | [diff] [blame] | 880 | } else { |
Kristian Høgsberg | 2639a6f | 2007-01-26 00:37:57 -0500 | [diff] [blame] | 881 | fw_core_handle_response(&ohci->card, &p); |
Stefan Richter | d34316a | 2008-04-12 22:31:25 +0200 | [diff] [blame] | 882 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 883 | |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 884 | return buffer + length + 1; |
| 885 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 886 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 887 | static void *handle_ar_packets(struct ar_context *ctx, void *p, void *end) |
| 888 | { |
| 889 | void *next; |
| 890 | |
| 891 | while (p < end) { |
| 892 | next = handle_ar_packet(ctx, p); |
| 893 | if (!next) |
| 894 | return p; |
| 895 | p = next; |
| 896 | } |
| 897 | |
| 898 | return p; |
| 899 | } |
| 900 | |
| 901 | static void ar_recycle_buffers(struct ar_context *ctx, unsigned int end_buffer) |
| 902 | { |
| 903 | unsigned int i; |
| 904 | |
| 905 | i = ar_first_buffer_index(ctx); |
| 906 | while (i != end_buffer) { |
| 907 | dma_sync_single_for_device(ctx->ohci->card.device, |
| 908 | ar_buffer_bus(ctx, i), |
| 909 | PAGE_SIZE, DMA_FROM_DEVICE); |
| 910 | ar_context_link_page(ctx, i); |
| 911 | i = ar_next_buffer_index(i); |
| 912 | } |
| 913 | } |
| 914 | |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 915 | static void ar_context_tasklet(unsigned long data) |
| 916 | { |
| 917 | struct ar_context *ctx = (struct ar_context *)data; |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 918 | unsigned int end_buffer_index, end_buffer_offset; |
| 919 | void *p, *end; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 920 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 921 | p = ctx->pointer; |
| 922 | if (!p) |
| 923 | return; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 924 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 925 | end_buffer_index = ar_search_last_active_buffer(ctx, |
| 926 | &end_buffer_offset); |
| 927 | ar_sync_buffers_for_cpu(ctx, end_buffer_index, end_buffer_offset); |
| 928 | end = ctx->buffer + end_buffer_index * PAGE_SIZE + end_buffer_offset; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 929 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 930 | if (end_buffer_index < ar_first_buffer_index(ctx)) { |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 931 | /* |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 932 | * The filled part of the overall buffer wraps around; handle |
| 933 | * all packets up to the buffer end here. If the last packet |
| 934 | * wraps around, its tail will be visible after the buffer end |
| 935 | * because the buffer start pages are mapped there again. |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 936 | */ |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 937 | void *buffer_end = ctx->buffer + AR_BUFFERS * PAGE_SIZE; |
| 938 | p = handle_ar_packets(ctx, p, buffer_end); |
| 939 | if (p < buffer_end) |
| 940 | goto error; |
| 941 | /* adjust p to point back into the actual buffer */ |
| 942 | p -= AR_BUFFERS * PAGE_SIZE; |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 943 | } |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 944 | |
| 945 | p = handle_ar_packets(ctx, p, end); |
| 946 | if (p != end) { |
| 947 | if (p > end) |
| 948 | ar_context_abort(ctx, "inconsistent descriptor"); |
| 949 | goto error; |
| 950 | } |
| 951 | |
| 952 | ctx->pointer = p; |
| 953 | ar_recycle_buffers(ctx, end_buffer_index); |
| 954 | |
| 955 | return; |
| 956 | |
| 957 | error: |
| 958 | ctx->pointer = NULL; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 959 | } |
| 960 | |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 961 | static int ar_context_init(struct ar_context *ctx, struct fw_ohci *ohci, |
| 962 | unsigned int descriptors_offset, u32 regs) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 963 | { |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 964 | unsigned int i; |
| 965 | dma_addr_t dma_addr; |
| 966 | struct page *pages[AR_BUFFERS + AR_WRAPAROUND_PAGES]; |
| 967 | struct descriptor *d; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 968 | |
Kristian Høgsberg | 72e318e | 2007-02-06 14:49:31 -0500 | [diff] [blame] | 969 | ctx->regs = regs; |
| 970 | ctx->ohci = ohci; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 971 | tasklet_init(&ctx->tasklet, ar_context_tasklet, (unsigned long)ctx); |
| 972 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 973 | for (i = 0; i < AR_BUFFERS; i++) { |
| 974 | ctx->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32); |
| 975 | if (!ctx->pages[i]) |
| 976 | goto out_of_memory; |
| 977 | dma_addr = dma_map_page(ohci->card.device, ctx->pages[i], |
| 978 | 0, PAGE_SIZE, DMA_FROM_DEVICE); |
| 979 | if (dma_mapping_error(ohci->card.device, dma_addr)) { |
| 980 | __free_page(ctx->pages[i]); |
| 981 | ctx->pages[i] = NULL; |
| 982 | goto out_of_memory; |
| 983 | } |
| 984 | set_page_private(ctx->pages[i], dma_addr); |
| 985 | } |
| 986 | |
| 987 | for (i = 0; i < AR_BUFFERS; i++) |
| 988 | pages[i] = ctx->pages[i]; |
| 989 | for (i = 0; i < AR_WRAPAROUND_PAGES; i++) |
| 990 | pages[AR_BUFFERS + i] = ctx->pages[i]; |
| 991 | ctx->buffer = vm_map_ram(pages, AR_BUFFERS + AR_WRAPAROUND_PAGES, |
Clemens Ladisch | 1427130 | 2011-01-13 10:12:17 +0100 | [diff] [blame] | 992 | -1, PAGE_KERNEL); |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 993 | if (!ctx->buffer) |
| 994 | goto out_of_memory; |
| 995 | |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 996 | ctx->descriptors = ohci->misc_buffer + descriptors_offset; |
| 997 | ctx->descriptors_bus = ohci->misc_buffer_bus + descriptors_offset; |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 998 | |
| 999 | for (i = 0; i < AR_BUFFERS; i++) { |
| 1000 | d = &ctx->descriptors[i]; |
| 1001 | d->req_count = cpu_to_le16(PAGE_SIZE); |
| 1002 | d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE | |
| 1003 | DESCRIPTOR_STATUS | |
| 1004 | DESCRIPTOR_BRANCH_ALWAYS); |
| 1005 | d->data_address = cpu_to_le32(ar_buffer_bus(ctx, i)); |
| 1006 | d->branch_address = cpu_to_le32(ctx->descriptors_bus + |
| 1007 | ar_next_buffer_index(i) * sizeof(struct descriptor)); |
| 1008 | } |
Kristian Høgsberg | 32b4609 | 2007-02-06 14:49:30 -0500 | [diff] [blame] | 1009 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 1010 | return 0; |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 1011 | |
| 1012 | out_of_memory: |
| 1013 | ar_context_release(ctx); |
| 1014 | |
| 1015 | return -ENOMEM; |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | static void ar_context_run(struct ar_context *ctx) |
| 1019 | { |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 1020 | unsigned int i; |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 1021 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 1022 | for (i = 0; i < AR_BUFFERS; i++) |
| 1023 | ar_context_link_page(ctx, i); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 1024 | |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 1025 | ctx->pointer = ctx->buffer; |
| 1026 | |
| 1027 | reg_write(ctx->ohci, COMMAND_PTR(ctx->regs), ctx->descriptors_bus | 1); |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1028 | reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1029 | } |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 1030 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1031 | static struct descriptor *find_branch_descriptor(struct descriptor *d, int z) |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1032 | { |
Clemens Ladisch | 0ff8fbc | 2011-04-12 07:54:59 +0200 | [diff] [blame] | 1033 | __le16 branch; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1034 | |
Clemens Ladisch | 0ff8fbc | 2011-04-12 07:54:59 +0200 | [diff] [blame] | 1035 | branch = d->control & cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1036 | |
| 1037 | /* figure out which descriptor the branch address goes in */ |
Clemens Ladisch | 0ff8fbc | 2011-04-12 07:54:59 +0200 | [diff] [blame] | 1038 | if (z == 2 && branch == cpu_to_le16(DESCRIPTOR_BRANCH_ALWAYS)) |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1039 | return d; |
| 1040 | else |
| 1041 | return d + z - 1; |
| 1042 | } |
| 1043 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1044 | static void context_tasklet(unsigned long data) |
| 1045 | { |
| 1046 | struct context *ctx = (struct context *) data; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1047 | struct descriptor *d, *last; |
| 1048 | u32 address; |
| 1049 | int z; |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1050 | struct descriptor_buffer *desc; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1051 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1052 | desc = list_entry(ctx->buffer_list.next, |
| 1053 | struct descriptor_buffer, list); |
| 1054 | last = ctx->last; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1055 | while (last->branch_address != 0) { |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1056 | struct descriptor_buffer *old_desc = desc; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1057 | address = le32_to_cpu(last->branch_address); |
| 1058 | z = address & 0xf; |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1059 | address &= ~0xf; |
| 1060 | |
| 1061 | /* If the branch address points to a buffer outside of the |
| 1062 | * current buffer, advance to the next buffer. */ |
| 1063 | if (address < desc->buffer_bus || |
| 1064 | address >= desc->buffer_bus + desc->used) |
| 1065 | desc = list_entry(desc->list.next, |
| 1066 | struct descriptor_buffer, list); |
| 1067 | d = desc->buffer + (address - desc->buffer_bus) / sizeof(*d); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1068 | last = find_branch_descriptor(d, z); |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1069 | |
| 1070 | if (!ctx->callback(ctx, d, last)) |
| 1071 | break; |
| 1072 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1073 | if (old_desc != desc) { |
| 1074 | /* If we've advanced to the next buffer, move the |
| 1075 | * previous buffer to the free list. */ |
| 1076 | unsigned long flags; |
| 1077 | old_desc->used = 0; |
| 1078 | spin_lock_irqsave(&ctx->ohci->lock, flags); |
| 1079 | list_move_tail(&old_desc->list, &ctx->buffer_list); |
| 1080 | spin_unlock_irqrestore(&ctx->ohci->lock, flags); |
| 1081 | } |
| 1082 | ctx->last = last; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1083 | } |
| 1084 | } |
| 1085 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1086 | /* |
| 1087 | * Allocate a new buffer and add it to the list of free buffers for this |
| 1088 | * context. Must be called with ohci->lock held. |
| 1089 | */ |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1090 | static int context_add_buffer(struct context *ctx) |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1091 | { |
| 1092 | struct descriptor_buffer *desc; |
Stefan Richter | f5101d5 | 2008-03-14 00:27:49 +0100 | [diff] [blame] | 1093 | dma_addr_t uninitialized_var(bus_addr); |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1094 | int offset; |
| 1095 | |
| 1096 | /* |
| 1097 | * 16MB of descriptors should be far more than enough for any DMA |
| 1098 | * program. This will catch run-away userspace or DoS attacks. |
| 1099 | */ |
| 1100 | if (ctx->total_allocation >= 16*1024*1024) |
| 1101 | return -ENOMEM; |
| 1102 | |
| 1103 | desc = dma_alloc_coherent(ctx->ohci->card.device, PAGE_SIZE, |
| 1104 | &bus_addr, GFP_ATOMIC); |
| 1105 | if (!desc) |
| 1106 | return -ENOMEM; |
| 1107 | |
| 1108 | offset = (void *)&desc->buffer - (void *)desc; |
| 1109 | desc->buffer_size = PAGE_SIZE - offset; |
| 1110 | desc->buffer_bus = bus_addr + offset; |
| 1111 | desc->used = 0; |
| 1112 | |
| 1113 | list_add_tail(&desc->list, &ctx->buffer_list); |
| 1114 | ctx->total_allocation += PAGE_SIZE; |
| 1115 | |
| 1116 | return 0; |
| 1117 | } |
| 1118 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1119 | static int context_init(struct context *ctx, struct fw_ohci *ohci, |
| 1120 | u32 regs, descriptor_callback_t callback) |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1121 | { |
| 1122 | ctx->ohci = ohci; |
| 1123 | ctx->regs = regs; |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1124 | ctx->total_allocation = 0; |
| 1125 | |
| 1126 | INIT_LIST_HEAD(&ctx->buffer_list); |
| 1127 | if (context_add_buffer(ctx) < 0) |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1128 | return -ENOMEM; |
| 1129 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1130 | ctx->buffer_tail = list_entry(ctx->buffer_list.next, |
| 1131 | struct descriptor_buffer, list); |
| 1132 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1133 | tasklet_init(&ctx->tasklet, context_tasklet, (unsigned long)ctx); |
| 1134 | ctx->callback = callback; |
| 1135 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1136 | /* |
| 1137 | * We put a dummy descriptor in the buffer that has a NULL |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1138 | * branch address and looks like it's been sent. That way we |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1139 | * have a descriptor to append DMA programs to. |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1140 | */ |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1141 | memset(ctx->buffer_tail->buffer, 0, sizeof(*ctx->buffer_tail->buffer)); |
| 1142 | ctx->buffer_tail->buffer->control = cpu_to_le16(DESCRIPTOR_OUTPUT_LAST); |
| 1143 | ctx->buffer_tail->buffer->transfer_status = cpu_to_le16(0x8011); |
| 1144 | ctx->buffer_tail->used += sizeof(*ctx->buffer_tail->buffer); |
| 1145 | ctx->last = ctx->buffer_tail->buffer; |
| 1146 | ctx->prev = ctx->buffer_tail->buffer; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1147 | |
| 1148 | return 0; |
| 1149 | } |
| 1150 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1151 | static void context_release(struct context *ctx) |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1152 | { |
| 1153 | struct fw_card *card = &ctx->ohci->card; |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1154 | struct descriptor_buffer *desc, *tmp; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1155 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1156 | list_for_each_entry_safe(desc, tmp, &ctx->buffer_list, list) |
| 1157 | dma_free_coherent(card->device, PAGE_SIZE, desc, |
| 1158 | desc->buffer_bus - |
| 1159 | ((void *)&desc->buffer - (void *)desc)); |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1160 | } |
| 1161 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1162 | /* Must be called with ohci->lock held */ |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1163 | static struct descriptor *context_get_descriptors(struct context *ctx, |
| 1164 | int z, dma_addr_t *d_bus) |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1165 | { |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1166 | struct descriptor *d = NULL; |
| 1167 | struct descriptor_buffer *desc = ctx->buffer_tail; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1168 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1169 | if (z * sizeof(*d) > desc->buffer_size) |
| 1170 | return NULL; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1171 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1172 | if (z * sizeof(*d) > desc->buffer_size - desc->used) { |
| 1173 | /* No room for the descriptor in this buffer, so advance to the |
| 1174 | * next one. */ |
| 1175 | |
| 1176 | if (desc->list.next == &ctx->buffer_list) { |
| 1177 | /* If there is no free buffer next in the list, |
| 1178 | * allocate one. */ |
| 1179 | if (context_add_buffer(ctx) < 0) |
| 1180 | return NULL; |
| 1181 | } |
| 1182 | desc = list_entry(desc->list.next, |
| 1183 | struct descriptor_buffer, list); |
| 1184 | ctx->buffer_tail = desc; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1185 | } |
| 1186 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1187 | d = desc->buffer + desc->used / sizeof(*d); |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 1188 | memset(d, 0, z * sizeof(*d)); |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1189 | *d_bus = desc->buffer_bus + desc->used; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1190 | |
| 1191 | return d; |
| 1192 | } |
| 1193 | |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 1194 | static void context_run(struct context *ctx, u32 extra) |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1195 | { |
| 1196 | struct fw_ohci *ohci = ctx->ohci; |
| 1197 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1198 | reg_write(ohci, COMMAND_PTR(ctx->regs), |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1199 | le32_to_cpu(ctx->last->branch_address)); |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1200 | reg_write(ohci, CONTROL_CLEAR(ctx->regs), ~0); |
| 1201 | reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_RUN | extra); |
Clemens Ladisch | 386a415 | 2010-12-24 14:42:46 +0100 | [diff] [blame] | 1202 | ctx->running = true; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1203 | flush_writes(ohci); |
| 1204 | } |
| 1205 | |
| 1206 | static void context_append(struct context *ctx, |
| 1207 | struct descriptor *d, int z, int extra) |
| 1208 | { |
| 1209 | dma_addr_t d_bus; |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1210 | struct descriptor_buffer *desc = ctx->buffer_tail; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1211 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1212 | d_bus = desc->buffer_bus + (d - desc->buffer) * sizeof(*d); |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1213 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1214 | desc->used += (z + extra) * sizeof(*d); |
Stefan Richter | 071595e | 2010-07-27 13:20:33 +0200 | [diff] [blame] | 1215 | |
| 1216 | wmb(); /* finish init of new descriptors before branch_address update */ |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 1217 | ctx->prev->branch_address = cpu_to_le32(d_bus | z); |
| 1218 | ctx->prev = find_branch_descriptor(d, z); |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | static void context_stop(struct context *ctx) |
| 1222 | { |
| 1223 | u32 reg; |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 1224 | int i; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1225 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1226 | reg_write(ctx->ohci, CONTROL_CLEAR(ctx->regs), CONTEXT_RUN); |
Clemens Ladisch | 386a415 | 2010-12-24 14:42:46 +0100 | [diff] [blame] | 1227 | ctx->running = false; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1228 | |
Stefan Richter | 9ef28cc | 2011-06-12 14:30:57 +0200 | [diff] [blame] | 1229 | for (i = 0; i < 1000; i++) { |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1230 | reg = reg_read(ctx->ohci, CONTROL_SET(ctx->regs)); |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 1231 | if ((reg & CONTEXT_ACTIVE) == 0) |
Stefan Richter | b006854 | 2009-01-05 20:43:23 +0100 | [diff] [blame] | 1232 | return; |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 1233 | |
Stefan Richter | 9ef28cc | 2011-06-12 14:30:57 +0200 | [diff] [blame] | 1234 | if (i) |
| 1235 | udelay(10); |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 1236 | } |
Stefan Richter | b006854 | 2009-01-05 20:43:23 +0100 | [diff] [blame] | 1237 | fw_error("Error: DMA context still active (0x%08x)\n", reg); |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 1238 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1239 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1240 | struct driver_data { |
Clemens Ladisch | da28947 | 2011-04-11 09:57:54 +0200 | [diff] [blame] | 1241 | u8 inline_data[8]; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1242 | struct fw_packet *packet; |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1243 | }; |
| 1244 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1245 | /* |
| 1246 | * This function apppends a packet to the DMA queue for transmission. |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1247 | * Must always be called with the ochi->lock held to ensure proper |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1248 | * generation handling and locking around packet queue manipulation. |
| 1249 | */ |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1250 | static int at_context_queue_packet(struct context *ctx, |
| 1251 | struct fw_packet *packet) |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1252 | { |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1253 | struct fw_ohci *ohci = ctx->ohci; |
Stefan Richter | 4b6d51e | 2007-10-21 11:20:07 +0200 | [diff] [blame] | 1254 | dma_addr_t d_bus, uninitialized_var(payload_bus); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1255 | struct driver_data *driver_data; |
| 1256 | struct descriptor *d, *last; |
| 1257 | __le32 *header; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1258 | int z, tcode; |
| 1259 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1260 | d = context_get_descriptors(ctx, 4, &d_bus); |
| 1261 | if (d == NULL) { |
| 1262 | packet->ack = RCODE_SEND_ERROR; |
| 1263 | return -1; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1264 | } |
| 1265 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1266 | d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1267 | d[0].res_count = cpu_to_le16(packet->timestamp); |
| 1268 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1269 | /* |
| 1270 | * The DMA format for asyncronous link packets is different |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1271 | * from the IEEE1394 layout, so shift the fields around |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1272 | * accordingly. |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1273 | */ |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1274 | |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1275 | tcode = (packet->header[0] >> 4) & 0x0f; |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1276 | header = (__le32 *) &d[1]; |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1277 | switch (tcode) { |
| 1278 | case TCODE_WRITE_QUADLET_REQUEST: |
| 1279 | case TCODE_WRITE_BLOCK_REQUEST: |
| 1280 | case TCODE_WRITE_RESPONSE: |
| 1281 | case TCODE_READ_QUADLET_REQUEST: |
| 1282 | case TCODE_READ_BLOCK_REQUEST: |
| 1283 | case TCODE_READ_QUADLET_RESPONSE: |
| 1284 | case TCODE_READ_BLOCK_RESPONSE: |
| 1285 | case TCODE_LOCK_REQUEST: |
| 1286 | case TCODE_LOCK_RESPONSE: |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1287 | header[0] = cpu_to_le32((packet->header[0] & 0xffff) | |
| 1288 | (packet->speed << 16)); |
| 1289 | header[1] = cpu_to_le32((packet->header[1] & 0xffff) | |
| 1290 | (packet->header[0] & 0xffff0000)); |
| 1291 | header[2] = cpu_to_le32(packet->header[2]); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1292 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1293 | if (TCODE_IS_BLOCK_PACKET(tcode)) |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1294 | header[3] = cpu_to_le32(packet->header[3]); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1295 | else |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1296 | header[3] = (__force __le32) packet->header[3]; |
| 1297 | |
| 1298 | d[0].req_count = cpu_to_le16(packet->header_length); |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 1299 | break; |
| 1300 | |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1301 | case TCODE_LINK_INTERNAL: |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1302 | header[0] = cpu_to_le32((OHCI1394_phy_tcode << 4) | |
| 1303 | (packet->speed << 16)); |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1304 | header[1] = cpu_to_le32(packet->header[1]); |
| 1305 | header[2] = cpu_to_le32(packet->header[2]); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1306 | d[0].req_count = cpu_to_le16(12); |
Stefan Richter | cc55021 | 2010-07-18 13:00:50 +0200 | [diff] [blame] | 1307 | |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1308 | if (is_ping_packet(&packet->header[1])) |
Stefan Richter | cc55021 | 2010-07-18 13:00:50 +0200 | [diff] [blame] | 1309 | d[0].control |= cpu_to_le16(DESCRIPTOR_PING); |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 1310 | break; |
| 1311 | |
Clemens Ladisch | 5b06db1 | 2010-11-30 08:24:47 +0100 | [diff] [blame] | 1312 | case TCODE_STREAM_DATA: |
Jay Fenlason | f8c2287 | 2009-03-05 19:08:40 +0100 | [diff] [blame] | 1313 | header[0] = cpu_to_le32((packet->header[0] & 0xffff) | |
| 1314 | (packet->speed << 16)); |
| 1315 | header[1] = cpu_to_le32(packet->header[0] & 0xffff0000); |
| 1316 | d[0].req_count = cpu_to_le16(8); |
| 1317 | break; |
| 1318 | |
| 1319 | default: |
| 1320 | /* BUG(); */ |
| 1321 | packet->ack = RCODE_SEND_ERROR; |
| 1322 | return -1; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1323 | } |
| 1324 | |
Clemens Ladisch | da28947 | 2011-04-11 09:57:54 +0200 | [diff] [blame] | 1325 | BUILD_BUG_ON(sizeof(struct driver_data) > sizeof(struct descriptor)); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1326 | driver_data = (struct driver_data *) &d[3]; |
| 1327 | driver_data->packet = packet; |
Kristian Høgsberg | 20d1167 | 2007-03-26 19:18:19 -0400 | [diff] [blame] | 1328 | packet->driver_data = driver_data; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1329 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1330 | if (packet->payload_length > 0) { |
Clemens Ladisch | da28947 | 2011-04-11 09:57:54 +0200 | [diff] [blame] | 1331 | if (packet->payload_length > sizeof(driver_data->inline_data)) { |
| 1332 | payload_bus = dma_map_single(ohci->card.device, |
| 1333 | packet->payload, |
| 1334 | packet->payload_length, |
| 1335 | DMA_TO_DEVICE); |
| 1336 | if (dma_mapping_error(ohci->card.device, payload_bus)) { |
| 1337 | packet->ack = RCODE_SEND_ERROR; |
| 1338 | return -1; |
| 1339 | } |
| 1340 | packet->payload_bus = payload_bus; |
| 1341 | packet->payload_mapped = true; |
| 1342 | } else { |
| 1343 | memcpy(driver_data->inline_data, packet->payload, |
| 1344 | packet->payload_length); |
| 1345 | payload_bus = d_bus + 3 * sizeof(*d); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1346 | } |
| 1347 | |
| 1348 | d[2].req_count = cpu_to_le16(packet->payload_length); |
| 1349 | d[2].data_address = cpu_to_le32(payload_bus); |
| 1350 | last = &d[2]; |
| 1351 | z = 3; |
| 1352 | } else { |
| 1353 | last = &d[0]; |
| 1354 | z = 2; |
| 1355 | } |
| 1356 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1357 | last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST | |
| 1358 | DESCRIPTOR_IRQ_ALWAYS | |
| 1359 | DESCRIPTOR_BRANCH_ALWAYS); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1360 | |
Stefan Richter | b6258fc | 2011-02-26 15:08:35 +0100 | [diff] [blame] | 1361 | /* FIXME: Document how the locking works. */ |
| 1362 | if (ohci->generation != packet->generation) { |
Stefan Richter | 19593ff | 2009-10-14 20:40:10 +0200 | [diff] [blame] | 1363 | if (packet->payload_mapped) |
Stefan Richter | ab88ca4 | 2007-08-29 19:40:28 +0200 | [diff] [blame] | 1364 | dma_unmap_single(ohci->card.device, payload_bus, |
| 1365 | packet->payload_length, DMA_TO_DEVICE); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1366 | packet->ack = RCODE_GENERATION; |
| 1367 | return -1; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1368 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1369 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1370 | context_append(ctx, d, z, 4 - z); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1371 | |
Clemens Ladisch | dd6254e | 2011-05-16 08:10:10 +0200 | [diff] [blame] | 1372 | if (ctx->running) |
Clemens Ladisch | 13882a8 | 2011-05-02 09:33:56 +0200 | [diff] [blame] | 1373 | reg_write(ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE); |
Clemens Ladisch | dd6254e | 2011-05-16 08:10:10 +0200 | [diff] [blame] | 1374 | else |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1375 | context_run(ctx, 0); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1376 | |
| 1377 | return 0; |
| 1378 | } |
| 1379 | |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1380 | static void at_context_flush(struct context *ctx) |
| 1381 | { |
| 1382 | tasklet_disable(&ctx->tasklet); |
| 1383 | |
| 1384 | ctx->flushing = true; |
| 1385 | context_tasklet((unsigned long)ctx); |
| 1386 | ctx->flushing = false; |
| 1387 | |
| 1388 | tasklet_enable(&ctx->tasklet); |
| 1389 | } |
| 1390 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1391 | static int handle_at_packet(struct context *context, |
| 1392 | struct descriptor *d, |
| 1393 | struct descriptor *last) |
| 1394 | { |
| 1395 | struct driver_data *driver_data; |
| 1396 | struct fw_packet *packet; |
| 1397 | struct fw_ohci *ohci = context->ohci; |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1398 | int evt; |
| 1399 | |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1400 | if (last->transfer_status == 0 && !context->flushing) |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1401 | /* This descriptor isn't done yet, stop iteration. */ |
| 1402 | return 0; |
| 1403 | |
| 1404 | driver_data = (struct driver_data *) &d[3]; |
| 1405 | packet = driver_data->packet; |
| 1406 | if (packet == NULL) |
| 1407 | /* This packet was cancelled, just continue. */ |
| 1408 | return 1; |
| 1409 | |
Stefan Richter | 19593ff | 2009-10-14 20:40:10 +0200 | [diff] [blame] | 1410 | if (packet->payload_mapped) |
Stefan Richter | 1d1dc5e | 2008-12-10 00:20:38 +0100 | [diff] [blame] | 1411 | dma_unmap_single(ohci->card.device, packet->payload_bus, |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1412 | packet->payload_length, DMA_TO_DEVICE); |
| 1413 | |
| 1414 | evt = le16_to_cpu(last->transfer_status) & 0x1f; |
| 1415 | packet->timestamp = le16_to_cpu(last->res_count); |
| 1416 | |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 1417 | log_ar_at_event('T', packet->speed, packet->header, evt); |
| 1418 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1419 | switch (evt) { |
| 1420 | case OHCI1394_evt_timeout: |
| 1421 | /* Async response transmit timed out. */ |
| 1422 | packet->ack = RCODE_CANCELLED; |
| 1423 | break; |
| 1424 | |
| 1425 | case OHCI1394_evt_flushed: |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1426 | /* |
| 1427 | * The packet was flushed should give same error as |
| 1428 | * when we try to use a stale generation count. |
| 1429 | */ |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1430 | packet->ack = RCODE_GENERATION; |
| 1431 | break; |
| 1432 | |
| 1433 | case OHCI1394_evt_missing_ack: |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1434 | if (context->flushing) |
| 1435 | packet->ack = RCODE_GENERATION; |
| 1436 | else { |
| 1437 | /* |
| 1438 | * Using a valid (current) generation count, but the |
| 1439 | * node is not on the bus or not sending acks. |
| 1440 | */ |
| 1441 | packet->ack = RCODE_NO_ACK; |
| 1442 | } |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1443 | break; |
| 1444 | |
| 1445 | case ACK_COMPLETE + 0x10: |
| 1446 | case ACK_PENDING + 0x10: |
| 1447 | case ACK_BUSY_X + 0x10: |
| 1448 | case ACK_BUSY_A + 0x10: |
| 1449 | case ACK_BUSY_B + 0x10: |
| 1450 | case ACK_DATA_ERROR + 0x10: |
| 1451 | case ACK_TYPE_ERROR + 0x10: |
| 1452 | packet->ack = evt - 0x10; |
| 1453 | break; |
| 1454 | |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1455 | case OHCI1394_evt_no_status: |
| 1456 | if (context->flushing) { |
| 1457 | packet->ack = RCODE_GENERATION; |
| 1458 | break; |
| 1459 | } |
| 1460 | /* fall through */ |
| 1461 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1462 | default: |
| 1463 | packet->ack = RCODE_SEND_ERROR; |
| 1464 | break; |
| 1465 | } |
| 1466 | |
| 1467 | packet->callback(packet, &ohci->card, packet->ack); |
| 1468 | |
| 1469 | return 1; |
| 1470 | } |
| 1471 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1472 | #define HEADER_GET_DESTINATION(q) (((q) >> 16) & 0xffff) |
| 1473 | #define HEADER_GET_TCODE(q) (((q) >> 4) & 0x0f) |
| 1474 | #define HEADER_GET_OFFSET_HIGH(q) (((q) >> 0) & 0xffff) |
| 1475 | #define HEADER_GET_DATA_LENGTH(q) (((q) >> 16) & 0xffff) |
| 1476 | #define HEADER_GET_EXTENDED_TCODE(q) (((q) >> 0) & 0xffff) |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1477 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1478 | static void handle_local_rom(struct fw_ohci *ohci, |
| 1479 | struct fw_packet *packet, u32 csr) |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1480 | { |
| 1481 | struct fw_packet response; |
| 1482 | int tcode, length, i; |
| 1483 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1484 | tcode = HEADER_GET_TCODE(packet->header[0]); |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1485 | if (TCODE_IS_BLOCK_PACKET(tcode)) |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1486 | length = HEADER_GET_DATA_LENGTH(packet->header[3]); |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1487 | else |
| 1488 | length = 4; |
| 1489 | |
| 1490 | i = csr - CSR_CONFIG_ROM; |
| 1491 | if (i + length > CONFIG_ROM_SIZE) { |
| 1492 | fw_fill_response(&response, packet->header, |
| 1493 | RCODE_ADDRESS_ERROR, NULL, 0); |
| 1494 | } else if (!TCODE_IS_READ_REQUEST(tcode)) { |
| 1495 | fw_fill_response(&response, packet->header, |
| 1496 | RCODE_TYPE_ERROR, NULL, 0); |
| 1497 | } else { |
| 1498 | fw_fill_response(&response, packet->header, RCODE_COMPLETE, |
| 1499 | (void *) ohci->config_rom + i, length); |
| 1500 | } |
| 1501 | |
| 1502 | fw_core_handle_response(&ohci->card, &response); |
| 1503 | } |
| 1504 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1505 | static void handle_local_lock(struct fw_ohci *ohci, |
| 1506 | struct fw_packet *packet, u32 csr) |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1507 | { |
| 1508 | struct fw_packet response; |
Clemens Ladisch | e139366 | 2010-04-12 10:35:44 +0200 | [diff] [blame] | 1509 | int tcode, length, ext_tcode, sel, try; |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1510 | __be32 *payload, lock_old; |
| 1511 | u32 lock_arg, lock_data; |
| 1512 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1513 | tcode = HEADER_GET_TCODE(packet->header[0]); |
| 1514 | length = HEADER_GET_DATA_LENGTH(packet->header[3]); |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1515 | payload = packet->payload; |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1516 | ext_tcode = HEADER_GET_EXTENDED_TCODE(packet->header[3]); |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1517 | |
| 1518 | if (tcode == TCODE_LOCK_REQUEST && |
| 1519 | ext_tcode == EXTCODE_COMPARE_SWAP && length == 8) { |
| 1520 | lock_arg = be32_to_cpu(payload[0]); |
| 1521 | lock_data = be32_to_cpu(payload[1]); |
| 1522 | } else if (tcode == TCODE_READ_QUADLET_REQUEST) { |
| 1523 | lock_arg = 0; |
| 1524 | lock_data = 0; |
| 1525 | } else { |
| 1526 | fw_fill_response(&response, packet->header, |
| 1527 | RCODE_TYPE_ERROR, NULL, 0); |
| 1528 | goto out; |
| 1529 | } |
| 1530 | |
| 1531 | sel = (csr - CSR_BUS_MANAGER_ID) / 4; |
| 1532 | reg_write(ohci, OHCI1394_CSRData, lock_data); |
| 1533 | reg_write(ohci, OHCI1394_CSRCompareData, lock_arg); |
| 1534 | reg_write(ohci, OHCI1394_CSRControl, sel); |
| 1535 | |
Clemens Ladisch | e139366 | 2010-04-12 10:35:44 +0200 | [diff] [blame] | 1536 | for (try = 0; try < 20; try++) |
| 1537 | if (reg_read(ohci, OHCI1394_CSRControl) & 0x80000000) { |
| 1538 | lock_old = cpu_to_be32(reg_read(ohci, |
| 1539 | OHCI1394_CSRData)); |
| 1540 | fw_fill_response(&response, packet->header, |
| 1541 | RCODE_COMPLETE, |
| 1542 | &lock_old, sizeof(lock_old)); |
| 1543 | goto out; |
| 1544 | } |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1545 | |
Clemens Ladisch | e139366 | 2010-04-12 10:35:44 +0200 | [diff] [blame] | 1546 | fw_error("swap not done (CSR lock timeout)\n"); |
| 1547 | fw_fill_response(&response, packet->header, RCODE_BUSY, NULL, 0); |
| 1548 | |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1549 | out: |
| 1550 | fw_core_handle_response(&ohci->card, &response); |
| 1551 | } |
| 1552 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1553 | static void handle_local_request(struct context *ctx, struct fw_packet *packet) |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1554 | { |
Clemens Ladisch | 2608203 | 2010-04-12 10:35:30 +0200 | [diff] [blame] | 1555 | u64 offset, csr; |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1556 | |
Kristian Høgsberg | 473d28c | 2007-03-07 12:12:55 -0500 | [diff] [blame] | 1557 | if (ctx == &ctx->ohci->at_request_ctx) { |
| 1558 | packet->ack = ACK_PENDING; |
| 1559 | packet->callback(packet, &ctx->ohci->card, packet->ack); |
| 1560 | } |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1561 | |
| 1562 | offset = |
| 1563 | ((unsigned long long) |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1564 | HEADER_GET_OFFSET_HIGH(packet->header[1]) << 32) | |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1565 | packet->header[2]; |
| 1566 | csr = offset - CSR_REGISTER_BASE; |
| 1567 | |
| 1568 | /* Handle config rom reads. */ |
| 1569 | if (csr >= CSR_CONFIG_ROM && csr < CSR_CONFIG_ROM_END) |
| 1570 | handle_local_rom(ctx->ohci, packet, csr); |
| 1571 | else switch (csr) { |
| 1572 | case CSR_BUS_MANAGER_ID: |
| 1573 | case CSR_BANDWIDTH_AVAILABLE: |
| 1574 | case CSR_CHANNELS_AVAILABLE_HI: |
| 1575 | case CSR_CHANNELS_AVAILABLE_LO: |
| 1576 | handle_local_lock(ctx->ohci, packet, csr); |
| 1577 | break; |
| 1578 | default: |
| 1579 | if (ctx == &ctx->ohci->at_request_ctx) |
| 1580 | fw_core_handle_request(&ctx->ohci->card, packet); |
| 1581 | else |
| 1582 | fw_core_handle_response(&ctx->ohci->card, packet); |
| 1583 | break; |
| 1584 | } |
Kristian Høgsberg | 473d28c | 2007-03-07 12:12:55 -0500 | [diff] [blame] | 1585 | |
| 1586 | if (ctx == &ctx->ohci->at_response_ctx) { |
| 1587 | packet->ack = ACK_COMPLETE; |
| 1588 | packet->callback(packet, &ctx->ohci->card, packet->ack); |
| 1589 | } |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1590 | } |
Kristian Høgsberg | e636fe2 | 2007-01-26 00:38:04 -0500 | [diff] [blame] | 1591 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 1592 | static void at_context_transmit(struct context *ctx, struct fw_packet *packet) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1593 | { |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1594 | unsigned long flags; |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 1595 | int ret; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1596 | |
| 1597 | spin_lock_irqsave(&ctx->ohci->lock, flags); |
| 1598 | |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 1599 | if (HEADER_GET_DESTINATION(packet->header[0]) == ctx->ohci->node_id && |
Kristian Høgsberg | e636fe2 | 2007-01-26 00:38:04 -0500 | [diff] [blame] | 1600 | ctx->ohci->generation == packet->generation) { |
Kristian Høgsberg | 93c4cce | 2007-01-26 00:38:26 -0500 | [diff] [blame] | 1601 | spin_unlock_irqrestore(&ctx->ohci->lock, flags); |
| 1602 | handle_local_request(ctx, packet); |
| 1603 | return; |
Kristian Høgsberg | e636fe2 | 2007-01-26 00:38:04 -0500 | [diff] [blame] | 1604 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1605 | |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 1606 | ret = at_context_queue_packet(ctx, packet); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1607 | spin_unlock_irqrestore(&ctx->ohci->lock, flags); |
| 1608 | |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 1609 | if (ret < 0) |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1610 | packet->callback(packet, &ctx->ohci->card, packet->ack); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 1611 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1612 | } |
| 1613 | |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 1614 | static void detect_dead_context(struct fw_ohci *ohci, |
| 1615 | const char *name, unsigned int regs) |
| 1616 | { |
| 1617 | u32 ctl; |
| 1618 | |
| 1619 | ctl = reg_read(ohci, CONTROL_SET(regs)); |
| 1620 | if (ctl & CONTEXT_DEAD) { |
| 1621 | #ifdef CONFIG_FIREWIRE_OHCI_DEBUG |
| 1622 | fw_error("DMA context %s has stopped, error code: %s\n", |
| 1623 | name, evts[ctl & 0x1f]); |
| 1624 | #else |
| 1625 | fw_error("DMA context %s has stopped, error code: %#x\n", |
| 1626 | name, ctl & 0x1f); |
| 1627 | #endif |
| 1628 | } |
| 1629 | } |
| 1630 | |
| 1631 | static void handle_dead_contexts(struct fw_ohci *ohci) |
| 1632 | { |
| 1633 | unsigned int i; |
| 1634 | char name[8]; |
| 1635 | |
| 1636 | detect_dead_context(ohci, "ATReq", OHCI1394_AsReqTrContextBase); |
| 1637 | detect_dead_context(ohci, "ATRsp", OHCI1394_AsRspTrContextBase); |
| 1638 | detect_dead_context(ohci, "ARReq", OHCI1394_AsReqRcvContextBase); |
| 1639 | detect_dead_context(ohci, "ARRsp", OHCI1394_AsRspRcvContextBase); |
| 1640 | for (i = 0; i < 32; ++i) { |
| 1641 | if (!(ohci->it_context_support & (1 << i))) |
| 1642 | continue; |
| 1643 | sprintf(name, "IT%u", i); |
| 1644 | detect_dead_context(ohci, name, OHCI1394_IsoXmitContextBase(i)); |
| 1645 | } |
| 1646 | for (i = 0; i < 32; ++i) { |
| 1647 | if (!(ohci->ir_context_support & (1 << i))) |
| 1648 | continue; |
| 1649 | sprintf(name, "IR%u", i); |
| 1650 | detect_dead_context(ohci, name, OHCI1394_IsoRcvContextBase(i)); |
| 1651 | } |
| 1652 | /* TODO: maybe try to flush and restart the dead contexts */ |
| 1653 | } |
| 1654 | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 1655 | static u32 cycle_timer_ticks(u32 cycle_timer) |
| 1656 | { |
| 1657 | u32 ticks; |
| 1658 | |
| 1659 | ticks = cycle_timer & 0xfff; |
| 1660 | ticks += 3072 * ((cycle_timer >> 12) & 0x1fff); |
| 1661 | ticks += (3072 * 8000) * (cycle_timer >> 25); |
| 1662 | |
| 1663 | return ticks; |
| 1664 | } |
| 1665 | |
| 1666 | /* |
| 1667 | * Some controllers exhibit one or more of the following bugs when updating the |
| 1668 | * iso cycle timer register: |
| 1669 | * - When the lowest six bits are wrapping around to zero, a read that happens |
| 1670 | * at the same time will return garbage in the lowest ten bits. |
| 1671 | * - When the cycleOffset field wraps around to zero, the cycleCount field is |
| 1672 | * not incremented for about 60 ns. |
| 1673 | * - Occasionally, the entire register reads zero. |
| 1674 | * |
| 1675 | * To catch these, we read the register three times and ensure that the |
| 1676 | * difference between each two consecutive reads is approximately the same, i.e. |
| 1677 | * less than twice the other. Furthermore, any negative difference indicates an |
| 1678 | * error. (A PCI read should take at least 20 ticks of the 24.576 MHz timer to |
| 1679 | * execute, so we have enough precision to compute the ratio of the differences.) |
| 1680 | */ |
| 1681 | static u32 get_cycle_time(struct fw_ohci *ohci) |
| 1682 | { |
| 1683 | u32 c0, c1, c2; |
| 1684 | u32 t0, t1, t2; |
| 1685 | s32 diff01, diff12; |
| 1686 | int i; |
| 1687 | |
| 1688 | c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); |
| 1689 | |
| 1690 | if (ohci->quirks & QUIRK_CYCLE_TIMER) { |
| 1691 | i = 0; |
| 1692 | c1 = c2; |
| 1693 | c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); |
| 1694 | do { |
| 1695 | c0 = c1; |
| 1696 | c1 = c2; |
| 1697 | c2 = reg_read(ohci, OHCI1394_IsochronousCycleTimer); |
| 1698 | t0 = cycle_timer_ticks(c0); |
| 1699 | t1 = cycle_timer_ticks(c1); |
| 1700 | t2 = cycle_timer_ticks(c2); |
| 1701 | diff01 = t1 - t0; |
| 1702 | diff12 = t2 - t1; |
| 1703 | } while ((diff01 <= 0 || diff12 <= 0 || |
| 1704 | diff01 / diff12 >= 2 || diff12 / diff01 >= 2) |
| 1705 | && i++ < 20); |
| 1706 | } |
| 1707 | |
| 1708 | return c2; |
| 1709 | } |
| 1710 | |
| 1711 | /* |
| 1712 | * This function has to be called at least every 64 seconds. The bus_time |
| 1713 | * field stores not only the upper 25 bits of the BUS_TIME register but also |
| 1714 | * the most significant bit of the cycle timer in bit 6 so that we can detect |
| 1715 | * changes in this bit. |
| 1716 | */ |
| 1717 | static u32 update_bus_time(struct fw_ohci *ohci) |
| 1718 | { |
| 1719 | u32 cycle_time_seconds = get_cycle_time(ohci) >> 25; |
| 1720 | |
| 1721 | if ((ohci->bus_time & 0x40) != (cycle_time_seconds & 0x40)) |
| 1722 | ohci->bus_time += 0x40; |
| 1723 | |
| 1724 | return ohci->bus_time | cycle_time_seconds; |
| 1725 | } |
| 1726 | |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 1727 | static int get_status_for_port(struct fw_ohci *ohci, int port_index) |
| 1728 | { |
| 1729 | int reg; |
| 1730 | |
| 1731 | mutex_lock(&ohci->phy_reg_mutex); |
| 1732 | reg = write_phy_reg(ohci, 7, port_index); |
| 1733 | mutex_unlock(&ohci->phy_reg_mutex); |
| 1734 | if (reg < 0) |
| 1735 | return reg; |
| 1736 | |
| 1737 | mutex_lock(&ohci->phy_reg_mutex); |
| 1738 | reg = read_phy_reg(ohci, 8); |
| 1739 | mutex_unlock(&ohci->phy_reg_mutex); |
| 1740 | if (reg < 0) |
| 1741 | return reg; |
| 1742 | |
| 1743 | switch (reg & 0x0f) { |
| 1744 | case 0x06: |
| 1745 | return 2; /* is child node (connected to parent node) */ |
| 1746 | case 0x0e: |
| 1747 | return 3; /* is parent node (connected to child node) */ |
| 1748 | } |
| 1749 | return 1; /* not connected */ |
| 1750 | } |
| 1751 | |
| 1752 | static int get_self_id_pos(struct fw_ohci *ohci, u32 self_id, |
| 1753 | int self_id_count) |
| 1754 | { |
| 1755 | int i; |
| 1756 | u32 entry; |
| 1757 | for (i = 0; i < self_id_count; i++) { |
| 1758 | entry = ohci->self_id_buffer[i]; |
| 1759 | if ((self_id & 0xff000000) == (entry & 0xff000000)) |
| 1760 | return -1; |
| 1761 | if ((self_id & 0xff000000) < (entry & 0xff000000)) |
| 1762 | return i; |
| 1763 | } |
| 1764 | return i; |
| 1765 | } |
| 1766 | |
| 1767 | /* |
| 1768 | * This function implements a work around for the Texas Instruments PHY |
| 1769 | * TSB41BA3D. This phy has a bug at least in combination with the TI |
| 1770 | * LLCs TSB82AA2B and TSB12LV26. The selfid coming from the locally |
| 1771 | * connected phy is not propagated into the selfid buffer of the OHCI |
| 1772 | * (see http://www.ti.com/litv/pdf/sllz059 for details). |
| 1773 | * The main idea is to construct the selfid ourselves. |
| 1774 | */ |
| 1775 | |
| 1776 | static int find_and_insert_self_id(struct fw_ohci *ohci, int self_id_count) |
| 1777 | { |
| 1778 | int reg; |
| 1779 | int i; |
| 1780 | int pos; |
| 1781 | int status; |
| 1782 | u32 self_id; |
| 1783 | |
| 1784 | /* |
| 1785 | * preset bits in self_id |
| 1786 | * |
| 1787 | * link active: 0b1 |
| 1788 | * speed: 0b11 |
| 1789 | * bridge: 0b00 |
| 1790 | * contender: 0b1 |
| 1791 | * initiated reset: 0b0 |
| 1792 | * more packets: 0b0 |
| 1793 | */ |
| 1794 | self_id = 0x8040C800; |
| 1795 | |
| 1796 | reg = reg_read(ohci, OHCI1394_NodeID); |
| 1797 | if (!(reg & OHCI1394_NodeID_idValid)) { |
| 1798 | fw_notify("node ID not valid, new bus reset in progress\n"); |
| 1799 | return -EBUSY; |
| 1800 | } |
| 1801 | self_id |= ((reg & 0x3f) << 24); /* phy ID */ |
| 1802 | |
| 1803 | mutex_lock(&ohci->phy_reg_mutex); |
| 1804 | reg = read_phy_reg(ohci, 4); |
| 1805 | mutex_unlock(&ohci->phy_reg_mutex); |
| 1806 | if (reg < 0) |
| 1807 | return reg; |
| 1808 | self_id |= ((reg & 0x07) << 8); /* power class */ |
| 1809 | |
| 1810 | mutex_lock(&ohci->phy_reg_mutex); |
| 1811 | reg = read_phy_reg(ohci, 1); |
| 1812 | mutex_unlock(&ohci->phy_reg_mutex); |
| 1813 | if (reg < 0) |
| 1814 | return reg; |
| 1815 | self_id |= ((reg & 0x3f) << 16); /* gap count */ |
| 1816 | |
| 1817 | for (i = 0; i < 3; i++) { |
| 1818 | status = get_status_for_port(ohci, i); |
| 1819 | if (status < 0) |
| 1820 | return status; |
| 1821 | self_id |= ((status & 0x3) << (6 - (i * 2))); |
| 1822 | } |
| 1823 | |
| 1824 | pos = get_self_id_pos(ohci, self_id, self_id_count); |
| 1825 | if (pos >= 0) { |
| 1826 | memmove(&(ohci->self_id_buffer[pos+1]), |
| 1827 | &(ohci->self_id_buffer[pos]), |
| 1828 | (self_id_count - pos) * sizeof(*ohci->self_id_buffer)); |
| 1829 | ohci->self_id_buffer[pos] = self_id; |
| 1830 | self_id_count++; |
| 1831 | } |
| 1832 | return self_id_count; |
| 1833 | } |
| 1834 | |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 1835 | static void bus_reset_work(struct work_struct *work) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1836 | { |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 1837 | struct fw_ohci *ohci = |
| 1838 | container_of(work, struct fw_ohci, bus_reset_work); |
Kristian Høgsberg | e636fe2 | 2007-01-26 00:38:04 -0500 | [diff] [blame] | 1839 | int self_id_count, i, j, reg; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1840 | int generation, new_generation; |
| 1841 | unsigned long flags; |
Stefan Richter | 4eaff7d | 2007-07-25 19:18:08 +0200 | [diff] [blame] | 1842 | void *free_rom = NULL; |
| 1843 | dma_addr_t free_rom_bus = 0; |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 1844 | bool is_new_root; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1845 | |
| 1846 | reg = reg_read(ohci, OHCI1394_NodeID); |
| 1847 | if (!(reg & OHCI1394_NodeID_idValid)) { |
Stefan Richter | 02ff8f8 | 2007-08-30 00:11:40 +0200 | [diff] [blame] | 1848 | fw_notify("node ID not valid, new bus reset in progress\n"); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1849 | return; |
| 1850 | } |
Stefan Richter | 02ff8f8 | 2007-08-30 00:11:40 +0200 | [diff] [blame] | 1851 | if ((reg & OHCI1394_NodeID_nodeNumber) == 63) { |
| 1852 | fw_notify("malconfigured bus\n"); |
| 1853 | return; |
| 1854 | } |
| 1855 | ohci->node_id = reg & (OHCI1394_NodeID_busNumber | |
| 1856 | OHCI1394_NodeID_nodeNumber); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1857 | |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 1858 | is_new_root = (reg & OHCI1394_NodeID_root) != 0; |
| 1859 | if (!(ohci->is_root && is_new_root)) |
| 1860 | reg_write(ohci, OHCI1394_LinkControlSet, |
| 1861 | OHCI1394_LinkControl_cycleMaster); |
| 1862 | ohci->is_root = is_new_root; |
| 1863 | |
Stefan Richter | c8a9a49 | 2008-03-19 21:40:32 +0100 | [diff] [blame] | 1864 | reg = reg_read(ohci, OHCI1394_SelfIDCount); |
| 1865 | if (reg & OHCI1394_SelfIDCount_selfIDError) { |
| 1866 | fw_notify("inconsistent self IDs\n"); |
| 1867 | return; |
| 1868 | } |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1869 | /* |
| 1870 | * The count in the SelfIDCount register is the number of |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1871 | * bytes in the self ID receive buffer. Since we also receive |
| 1872 | * the inverted quadlets and a header quadlet, we shift one |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1873 | * bit extra to get the actual number of self IDs. |
| 1874 | */ |
Stefan Richter | 928ec5f | 2009-09-06 18:49:17 +0200 | [diff] [blame] | 1875 | self_id_count = (reg >> 3) & 0xff; |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 1876 | |
| 1877 | if (self_id_count > 252) { |
Stefan Richter | 016bf3d | 2008-03-19 22:05:02 +0100 | [diff] [blame] | 1878 | fw_notify("inconsistent self IDs\n"); |
| 1879 | return; |
| 1880 | } |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 1881 | |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 1882 | generation = (cond_le32_to_cpu(ohci->self_id_cpu[0]) >> 16) & 0xff; |
Stefan Richter | ee71c2f | 2007-08-25 14:08:19 +0200 | [diff] [blame] | 1883 | rmb(); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1884 | |
| 1885 | for (i = 1, j = 0; j < self_id_count; i += 2, j++) { |
Stefan Richter | c8a9a49 | 2008-03-19 21:40:32 +0100 | [diff] [blame] | 1886 | if (ohci->self_id_cpu[i] != ~ohci->self_id_cpu[i + 1]) { |
| 1887 | fw_notify("inconsistent self IDs\n"); |
| 1888 | return; |
| 1889 | } |
Stefan Richter | 11bf20a | 2008-03-01 02:47:15 +0100 | [diff] [blame] | 1890 | ohci->self_id_buffer[j] = |
| 1891 | cond_le32_to_cpu(ohci->self_id_cpu[i]); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1892 | } |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 1893 | |
| 1894 | if (ohci->quirks & QUIRK_TI_SLLZ059) { |
| 1895 | self_id_count = find_and_insert_self_id(ohci, self_id_count); |
| 1896 | if (self_id_count < 0) { |
| 1897 | fw_notify("could not construct local self IDs\n"); |
| 1898 | return; |
| 1899 | } |
| 1900 | } |
| 1901 | |
| 1902 | if (self_id_count == 0) { |
| 1903 | fw_notify("inconsistent self IDs\n"); |
| 1904 | return; |
| 1905 | } |
Stefan Richter | ee71c2f | 2007-08-25 14:08:19 +0200 | [diff] [blame] | 1906 | rmb(); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1907 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1908 | /* |
| 1909 | * Check the consistency of the self IDs we just read. The |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1910 | * problem we face is that a new bus reset can start while we |
| 1911 | * read out the self IDs from the DMA buffer. If this happens, |
| 1912 | * the DMA buffer will be overwritten with new self IDs and we |
| 1913 | * will read out inconsistent data. The OHCI specification |
| 1914 | * (section 11.2) recommends a technique similar to |
| 1915 | * linux/seqlock.h, where we remember the generation of the |
| 1916 | * self IDs in the buffer before reading them out and compare |
| 1917 | * it to the current generation after reading them out. If |
| 1918 | * the two generations match we know we have a consistent set |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1919 | * of self IDs. |
| 1920 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1921 | |
| 1922 | new_generation = (reg_read(ohci, OHCI1394_SelfIDCount) >> 16) & 0xff; |
| 1923 | if (new_generation != generation) { |
| 1924 | fw_notify("recursive bus reset detected, " |
| 1925 | "discarding self ids\n"); |
| 1926 | return; |
| 1927 | } |
| 1928 | |
| 1929 | /* FIXME: Document how the locking works. */ |
| 1930 | spin_lock_irqsave(&ohci->lock, flags); |
| 1931 | |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1932 | ohci->generation = -1; /* prevent AT packet queueing */ |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 1933 | context_stop(&ohci->at_request_ctx); |
| 1934 | context_stop(&ohci->at_response_ctx); |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1935 | |
| 1936 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 1937 | |
Stefan Richter | 78dec56 | 2011-01-01 15:15:40 +0100 | [diff] [blame] | 1938 | /* |
| 1939 | * Per OHCI 1.2 draft, clause 7.2.3.3, hardware may leave unsent |
| 1940 | * packets in the AT queues and software needs to drain them. |
| 1941 | * Some OHCI 1.1 controllers (JMicron) apparently require this too. |
| 1942 | */ |
Clemens Ladisch | 82b662d | 2010-12-24 14:40:15 +0100 | [diff] [blame] | 1943 | at_context_flush(&ohci->at_request_ctx); |
| 1944 | at_context_flush(&ohci->at_response_ctx); |
| 1945 | |
| 1946 | spin_lock_irqsave(&ohci->lock, flags); |
| 1947 | |
| 1948 | ohci->generation = generation; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1949 | reg_write(ohci, OHCI1394_IntEventClear, OHCI1394_busReset); |
| 1950 | |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 1951 | if (ohci->quirks & QUIRK_RESET_PACKET) |
Stefan Richter | d34316a | 2008-04-12 22:31:25 +0200 | [diff] [blame] | 1952 | ohci->request_generation = generation; |
| 1953 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1954 | /* |
| 1955 | * This next bit is unrelated to the AT context stuff but we |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1956 | * have to do it under the spinlock also. If a new config rom |
| 1957 | * was set up before this reset, the old one is now no longer |
| 1958 | * in use and we can free it. Update the config rom pointers |
| 1959 | * to point to the current config rom and clear the |
Thomas Weber | 8839316 | 2010-03-16 11:47:56 +0100 | [diff] [blame] | 1960 | * next_config_rom pointer so a new update can take place. |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1961 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1962 | |
| 1963 | if (ohci->next_config_rom != NULL) { |
Kristian Høgsberg | 0bd243c | 2007-06-05 19:27:05 -0400 | [diff] [blame] | 1964 | if (ohci->next_config_rom != ohci->config_rom) { |
| 1965 | free_rom = ohci->config_rom; |
| 1966 | free_rom_bus = ohci->config_rom_bus; |
| 1967 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1968 | ohci->config_rom = ohci->next_config_rom; |
| 1969 | ohci->config_rom_bus = ohci->next_config_rom_bus; |
| 1970 | ohci->next_config_rom = NULL; |
| 1971 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1972 | /* |
| 1973 | * Restore config_rom image and manually update |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1974 | * config_rom registers. Writing the header quadlet |
| 1975 | * will indicate that the config rom is ready, so we |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 1976 | * do that last. |
| 1977 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1978 | reg_write(ohci, OHCI1394_BusOptions, |
| 1979 | be32_to_cpu(ohci->config_rom[2])); |
Stefan Richter | 8e85973 | 2009-10-08 00:41:59 +0200 | [diff] [blame] | 1980 | ohci->config_rom[0] = ohci->next_header; |
| 1981 | reg_write(ohci, OHCI1394_ConfigROMhdr, |
| 1982 | be32_to_cpu(ohci->next_header)); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1983 | } |
| 1984 | |
Stefan Richter | 080de8c | 2008-02-28 20:54:43 +0100 | [diff] [blame] | 1985 | #ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA |
| 1986 | reg_write(ohci, OHCI1394_PhyReqFilterHiSet, ~0); |
| 1987 | reg_write(ohci, OHCI1394_PhyReqFilterLoSet, ~0); |
| 1988 | #endif |
| 1989 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 1990 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 1991 | |
Stefan Richter | 4eaff7d | 2007-07-25 19:18:08 +0200 | [diff] [blame] | 1992 | if (free_rom) |
| 1993 | dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 1994 | free_rom, free_rom_bus); |
| 1995 | |
Stefan Richter | 08ddb2f | 2008-04-11 00:51:15 +0200 | [diff] [blame] | 1996 | log_selfids(ohci->node_id, generation, |
| 1997 | self_id_count, ohci->self_id_buffer); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 1998 | |
Kristian Høgsberg | e636fe2 | 2007-01-26 00:38:04 -0500 | [diff] [blame] | 1999 | fw_core_handle_bus_reset(&ohci->card, ohci->node_id, generation, |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 2000 | self_id_count, ohci->self_id_buffer, |
| 2001 | ohci->csr_state_setclear_abdicate); |
| 2002 | ohci->csr_state_setclear_abdicate = false; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2003 | } |
| 2004 | |
| 2005 | static irqreturn_t irq_handler(int irq, void *data) |
| 2006 | { |
| 2007 | struct fw_ohci *ohci = data; |
Stefan Richter | 168cf9a | 2010-02-14 18:49:18 +0100 | [diff] [blame] | 2008 | u32 event, iso_event; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2009 | int i; |
| 2010 | |
| 2011 | event = reg_read(ohci, OHCI1394_IntEventClear); |
| 2012 | |
Stefan Richter | a515958 | 2007-06-09 19:31:14 +0200 | [diff] [blame] | 2013 | if (!event || !~event) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2014 | return IRQ_NONE; |
| 2015 | |
Clemens Ladisch | 8327b37 | 2010-11-30 08:24:32 +0100 | [diff] [blame] | 2016 | /* |
| 2017 | * busReset and postedWriteErr must not be cleared yet |
| 2018 | * (OHCI 1.1 clauses 7.2.3.2 and 13.2.8.1) |
| 2019 | */ |
| 2020 | reg_write(ohci, OHCI1394_IntEventClear, |
| 2021 | event & ~(OHCI1394_busReset | OHCI1394_postedWriteErr)); |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 2022 | log_irqs(event); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2023 | |
| 2024 | if (event & OHCI1394_selfIDComplete) |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 2025 | queue_work(fw_workqueue, &ohci->bus_reset_work); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2026 | |
| 2027 | if (event & OHCI1394_RQPkt) |
| 2028 | tasklet_schedule(&ohci->ar_request_ctx.tasklet); |
| 2029 | |
| 2030 | if (event & OHCI1394_RSPkt) |
| 2031 | tasklet_schedule(&ohci->ar_response_ctx.tasklet); |
| 2032 | |
| 2033 | if (event & OHCI1394_reqTxComplete) |
| 2034 | tasklet_schedule(&ohci->at_request_ctx.tasklet); |
| 2035 | |
| 2036 | if (event & OHCI1394_respTxComplete) |
| 2037 | tasklet_schedule(&ohci->at_response_ctx.tasklet); |
| 2038 | |
Clemens Ladisch | 2dd5bed | 2010-11-30 08:25:05 +0100 | [diff] [blame] | 2039 | if (event & OHCI1394_isochRx) { |
| 2040 | iso_event = reg_read(ohci, OHCI1394_IsoRecvIntEventClear); |
| 2041 | reg_write(ohci, OHCI1394_IsoRecvIntEventClear, iso_event); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2042 | |
Clemens Ladisch | 2dd5bed | 2010-11-30 08:25:05 +0100 | [diff] [blame] | 2043 | while (iso_event) { |
| 2044 | i = ffs(iso_event) - 1; |
| 2045 | tasklet_schedule( |
| 2046 | &ohci->ir_context_list[i].context.tasklet); |
| 2047 | iso_event &= ~(1 << i); |
| 2048 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2049 | } |
| 2050 | |
Clemens Ladisch | 2dd5bed | 2010-11-30 08:25:05 +0100 | [diff] [blame] | 2051 | if (event & OHCI1394_isochTx) { |
| 2052 | iso_event = reg_read(ohci, OHCI1394_IsoXmitIntEventClear); |
| 2053 | reg_write(ohci, OHCI1394_IsoXmitIntEventClear, iso_event); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2054 | |
Clemens Ladisch | 2dd5bed | 2010-11-30 08:25:05 +0100 | [diff] [blame] | 2055 | while (iso_event) { |
| 2056 | i = ffs(iso_event) - 1; |
| 2057 | tasklet_schedule( |
| 2058 | &ohci->it_context_list[i].context.tasklet); |
| 2059 | iso_event &= ~(1 << i); |
| 2060 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2061 | } |
| 2062 | |
Jarod Wilson | 75f7832 | 2008-04-03 17:18:23 -0400 | [diff] [blame] | 2063 | if (unlikely(event & OHCI1394_regAccessFail)) |
| 2064 | fw_error("Register access failure - " |
| 2065 | "please notify linux1394-devel@lists.sf.net\n"); |
| 2066 | |
Clemens Ladisch | 8327b37 | 2010-11-30 08:24:32 +0100 | [diff] [blame] | 2067 | if (unlikely(event & OHCI1394_postedWriteErr)) { |
| 2068 | reg_read(ohci, OHCI1394_PostedWriteAddressHi); |
| 2069 | reg_read(ohci, OHCI1394_PostedWriteAddressLo); |
| 2070 | reg_write(ohci, OHCI1394_IntEventClear, |
| 2071 | OHCI1394_postedWriteErr); |
Stefan Richter | e524f616 | 2007-08-20 21:58:30 +0200 | [diff] [blame] | 2072 | fw_error("PCI posted write error\n"); |
Clemens Ladisch | 8327b37 | 2010-11-30 08:24:32 +0100 | [diff] [blame] | 2073 | } |
Stefan Richter | e524f616 | 2007-08-20 21:58:30 +0200 | [diff] [blame] | 2074 | |
Stefan Richter | bb9f220 | 2007-12-22 22:14:52 +0100 | [diff] [blame] | 2075 | if (unlikely(event & OHCI1394_cycleTooLong)) { |
| 2076 | if (printk_ratelimit()) |
| 2077 | fw_notify("isochronous cycle too long\n"); |
| 2078 | reg_write(ohci, OHCI1394_LinkControlSet, |
| 2079 | OHCI1394_LinkControl_cycleMaster); |
| 2080 | } |
| 2081 | |
Jay Fenlason | 5ed1f32 | 2009-11-17 12:29:17 -0500 | [diff] [blame] | 2082 | if (unlikely(event & OHCI1394_cycleInconsistent)) { |
| 2083 | /* |
| 2084 | * We need to clear this event bit in order to make |
| 2085 | * cycleMatch isochronous I/O work. In theory we should |
| 2086 | * stop active cycleMatch iso contexts now and restart |
| 2087 | * them at least two cycles later. (FIXME?) |
| 2088 | */ |
| 2089 | if (printk_ratelimit()) |
| 2090 | fw_notify("isochronous cycle inconsistent\n"); |
| 2091 | } |
| 2092 | |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 2093 | if (unlikely(event & OHCI1394_unrecoverableError)) |
| 2094 | handle_dead_contexts(ohci); |
| 2095 | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2096 | if (event & OHCI1394_cycle64Seconds) { |
| 2097 | spin_lock(&ohci->lock); |
| 2098 | update_bus_time(ohci); |
| 2099 | spin_unlock(&ohci->lock); |
Clemens Ladisch | e597e98 | 2010-11-30 08:24:19 +0100 | [diff] [blame] | 2100 | } else |
| 2101 | flush_writes(ohci); |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2102 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2103 | return IRQ_HANDLED; |
| 2104 | } |
| 2105 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2106 | static int software_reset(struct fw_ohci *ohci) |
| 2107 | { |
Stefan Richter | 9f42617 | 2011-07-03 17:39:26 +0200 | [diff] [blame] | 2108 | u32 val; |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2109 | int i; |
| 2110 | |
| 2111 | reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_softReset); |
Stefan Richter | 9f42617 | 2011-07-03 17:39:26 +0200 | [diff] [blame] | 2112 | for (i = 0; i < 500; i++) { |
| 2113 | val = reg_read(ohci, OHCI1394_HCControlSet); |
| 2114 | if (!~val) |
| 2115 | return -ENODEV; /* Card was ejected. */ |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2116 | |
Stefan Richter | 9f42617 | 2011-07-03 17:39:26 +0200 | [diff] [blame] | 2117 | if (!(val & OHCI1394_HCControl_softReset)) |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2118 | return 0; |
Stefan Richter | 9f42617 | 2011-07-03 17:39:26 +0200 | [diff] [blame] | 2119 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2120 | msleep(1); |
| 2121 | } |
| 2122 | |
| 2123 | return -EBUSY; |
| 2124 | } |
| 2125 | |
Stefan Richter | 8e85973 | 2009-10-08 00:41:59 +0200 | [diff] [blame] | 2126 | static void copy_config_rom(__be32 *dest, const __be32 *src, size_t length) |
| 2127 | { |
| 2128 | size_t size = length * 4; |
| 2129 | |
| 2130 | memcpy(dest, src, size); |
| 2131 | if (size < CONFIG_ROM_SIZE) |
| 2132 | memset(&dest[length], 0, CONFIG_ROM_SIZE - size); |
| 2133 | } |
| 2134 | |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 2135 | static int configure_1394a_enhancements(struct fw_ohci *ohci) |
| 2136 | { |
| 2137 | bool enable_1394a; |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 2138 | int ret, clear, set, offset; |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 2139 | |
| 2140 | /* Check if the driver should configure link and PHY. */ |
| 2141 | if (!(reg_read(ohci, OHCI1394_HCControlSet) & |
| 2142 | OHCI1394_HCControl_programPhyEnable)) |
| 2143 | return 0; |
| 2144 | |
| 2145 | /* Paranoia: check whether the PHY supports 1394a, too. */ |
| 2146 | enable_1394a = false; |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 2147 | ret = read_phy_reg(ohci, 2); |
| 2148 | if (ret < 0) |
| 2149 | return ret; |
| 2150 | if ((ret & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) { |
| 2151 | ret = read_paged_phy_reg(ohci, 1, 8); |
| 2152 | if (ret < 0) |
| 2153 | return ret; |
| 2154 | if (ret >= 1) |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 2155 | enable_1394a = true; |
| 2156 | } |
| 2157 | |
| 2158 | if (ohci->quirks & QUIRK_NO_1394A) |
| 2159 | enable_1394a = false; |
| 2160 | |
| 2161 | /* Configure PHY and link consistently. */ |
| 2162 | if (enable_1394a) { |
| 2163 | clear = 0; |
| 2164 | set = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI; |
| 2165 | } else { |
| 2166 | clear = PHY_ENABLE_ACCEL | PHY_ENABLE_MULTI; |
| 2167 | set = 0; |
| 2168 | } |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 2169 | ret = update_phy_reg(ohci, 5, clear, set); |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 2170 | if (ret < 0) |
| 2171 | return ret; |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 2172 | |
| 2173 | if (enable_1394a) |
| 2174 | offset = OHCI1394_HCControlSet; |
| 2175 | else |
| 2176 | offset = OHCI1394_HCControlClear; |
| 2177 | reg_write(ohci, offset, OHCI1394_HCControl_aPhyEnhanceEnable); |
| 2178 | |
| 2179 | /* Clean up: configuration has been taken care of. */ |
| 2180 | reg_write(ohci, OHCI1394_HCControlClear, |
| 2181 | OHCI1394_HCControl_programPhyEnable); |
| 2182 | |
| 2183 | return 0; |
| 2184 | } |
| 2185 | |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 2186 | #define TSB41BA3D_VID 0x00080028 |
| 2187 | #define TSB41BA3D_PID 0x00833005 |
| 2188 | |
| 2189 | static int probe_tsb41ba3d(struct fw_ohci *ohci) |
| 2190 | { |
| 2191 | int reg; |
| 2192 | int i; |
| 2193 | int vendor_id; |
| 2194 | int product_id; |
| 2195 | |
| 2196 | reg = read_phy_reg(ohci, 2); |
| 2197 | if (reg < 0) |
| 2198 | return reg; |
| 2199 | |
| 2200 | if ((reg & PHY_EXTENDED_REGISTERS) == PHY_EXTENDED_REGISTERS) { |
| 2201 | vendor_id = 0; |
| 2202 | for (i = 10; i < 13; i++) { |
| 2203 | reg = read_paged_phy_reg(ohci, 1, i); |
| 2204 | if (reg < 0) |
| 2205 | return reg; |
| 2206 | vendor_id = (vendor_id << 8) | reg; |
| 2207 | } |
| 2208 | product_id = 0; |
| 2209 | for (i = 13; i < 16; i++) { |
| 2210 | reg = read_paged_phy_reg(ohci, 1, i); |
| 2211 | if (reg < 0) |
| 2212 | return reg; |
| 2213 | product_id = (product_id << 8) | reg; |
| 2214 | } |
| 2215 | |
| 2216 | if ((vendor_id == TSB41BA3D_VID) && |
| 2217 | (product_id == TSB41BA3D_PID)) |
| 2218 | return 1; |
| 2219 | } |
| 2220 | return 0; |
| 2221 | } |
| 2222 | |
Stefan Richter | 8e85973 | 2009-10-08 00:41:59 +0200 | [diff] [blame] | 2223 | static int ohci_enable(struct fw_card *card, |
| 2224 | const __be32 *config_rom, size_t length) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2225 | { |
| 2226 | struct fw_ohci *ohci = fw_ohci(card); |
| 2227 | struct pci_dev *dev = to_pci_dev(card->device); |
Clemens Ladisch | e91b278 | 2010-06-10 08:40:49 +0200 | [diff] [blame] | 2228 | u32 lps, seconds, version, irqs; |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 2229 | int i, ret, tsb41ba3d_found; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2230 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2231 | if (software_reset(ohci)) { |
| 2232 | fw_error("Failed to reset ohci card.\n"); |
| 2233 | return -EBUSY; |
| 2234 | } |
| 2235 | |
| 2236 | /* |
| 2237 | * Now enable LPS, which we need in order to start accessing |
| 2238 | * most of the registers. In fact, on some cards (ALI M5251), |
| 2239 | * accessing registers in the SClk domain without LPS enabled |
| 2240 | * will lock up the machine. Wait 50msec to make sure we have |
Jarod Wilson | 0221472 | 2008-03-28 10:02:50 -0400 | [diff] [blame] | 2241 | * full link enabled. However, with some cards (well, at least |
| 2242 | * a JMicron PCIe card), we have to try again sometimes. |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2243 | */ |
| 2244 | reg_write(ohci, OHCI1394_HCControlSet, |
| 2245 | OHCI1394_HCControl_LPS | |
| 2246 | OHCI1394_HCControl_postedWriteEnable); |
| 2247 | flush_writes(ohci); |
Jarod Wilson | 0221472 | 2008-03-28 10:02:50 -0400 | [diff] [blame] | 2248 | |
| 2249 | for (lps = 0, i = 0; !lps && i < 3; i++) { |
| 2250 | msleep(50); |
| 2251 | lps = reg_read(ohci, OHCI1394_HCControlSet) & |
| 2252 | OHCI1394_HCControl_LPS; |
| 2253 | } |
| 2254 | |
| 2255 | if (!lps) { |
| 2256 | fw_error("Failed to set Link Power Status\n"); |
| 2257 | return -EIO; |
| 2258 | } |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2259 | |
Stephan Gatzka | 25935eb | 2011-09-12 22:23:53 +0200 | [diff] [blame^] | 2260 | if (ohci->quirks & QUIRK_TI_SLLZ059) { |
| 2261 | tsb41ba3d_found = probe_tsb41ba3d(ohci); |
| 2262 | if (tsb41ba3d_found < 0) |
| 2263 | return tsb41ba3d_found; |
| 2264 | if (!tsb41ba3d_found) { |
| 2265 | fw_notify("No TSB41BA3D found, " |
| 2266 | "resetting QUIRK_TI_SLLZ059\n"); |
| 2267 | ohci->quirks &= ~QUIRK_TI_SLLZ059; |
| 2268 | } |
| 2269 | } |
| 2270 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2271 | reg_write(ohci, OHCI1394_HCControlClear, |
| 2272 | OHCI1394_HCControl_noByteSwapData); |
| 2273 | |
Stefan Richter | affc9c2 | 2008-06-05 20:50:53 +0200 | [diff] [blame] | 2274 | reg_write(ohci, OHCI1394_SelfIDBuffer, ohci->self_id_bus); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2275 | reg_write(ohci, OHCI1394_LinkControlSet, |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2276 | OHCI1394_LinkControl_cycleTimerEnable | |
| 2277 | OHCI1394_LinkControl_cycleMaster); |
| 2278 | |
| 2279 | reg_write(ohci, OHCI1394_ATRetries, |
| 2280 | OHCI1394_MAX_AT_REQ_RETRIES | |
| 2281 | (OHCI1394_MAX_AT_RESP_RETRIES << 4) | |
Clemens Ladisch | 27a2329 | 2010-06-10 08:34:13 +0200 | [diff] [blame] | 2282 | (OHCI1394_MAX_PHYS_RESP_RETRIES << 8) | |
| 2283 | (200 << 16)); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2284 | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2285 | seconds = lower_32_bits(get_seconds()); |
| 2286 | reg_write(ohci, OHCI1394_IsochronousCycleTimer, seconds << 25); |
| 2287 | ohci->bus_time = seconds & ~0x3f; |
| 2288 | |
Clemens Ladisch | e91b278 | 2010-06-10 08:40:49 +0200 | [diff] [blame] | 2289 | version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff; |
| 2290 | if (version >= OHCI_VERSION_1_1) { |
| 2291 | reg_write(ohci, OHCI1394_InitialChannelsAvailableHi, |
| 2292 | 0xfffffffe); |
Stefan Richter | db3c9cc | 2010-06-12 20:30:21 +0200 | [diff] [blame] | 2293 | card->broadcast_channel_auto_allocated = true; |
Clemens Ladisch | e91b278 | 2010-06-10 08:40:49 +0200 | [diff] [blame] | 2294 | } |
| 2295 | |
Clemens Ladisch | a1a1132 | 2010-06-10 08:35:06 +0200 | [diff] [blame] | 2296 | /* Get implemented bits of the priority arbitration request counter. */ |
| 2297 | reg_write(ohci, OHCI1394_FairnessControl, 0x3f); |
| 2298 | ohci->pri_req_max = reg_read(ohci, OHCI1394_FairnessControl) & 0x3f; |
| 2299 | reg_write(ohci, OHCI1394_FairnessControl, 0); |
Stefan Richter | db3c9cc | 2010-06-12 20:30:21 +0200 | [diff] [blame] | 2300 | card->priority_budget_implemented = ohci->pri_req_max != 0; |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2301 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2302 | reg_write(ohci, OHCI1394_PhyUpperBound, 0x00010000); |
| 2303 | reg_write(ohci, OHCI1394_IntEventClear, ~0); |
| 2304 | reg_write(ohci, OHCI1394_IntMaskClear, ~0); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2305 | |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 2306 | ret = configure_1394a_enhancements(ohci); |
| 2307 | if (ret < 0) |
| 2308 | return ret; |
Clemens Ladisch | 925e7a6 | 2010-04-04 15:19:54 +0200 | [diff] [blame] | 2309 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2310 | /* Activate link_on bit and contender bit in our self ID packets.*/ |
Stefan Richter | 35d999b | 2010-04-10 16:04:56 +0200 | [diff] [blame] | 2311 | ret = ohci_update_phy_reg(card, 4, 0, PHY_LINK_ACTIVE | PHY_CONTENDER); |
| 2312 | if (ret < 0) |
| 2313 | return ret; |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 2314 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 2315 | /* |
| 2316 | * When the link is not yet enabled, the atomic config rom |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2317 | * update mechanism described below in ohci_set_config_rom() |
| 2318 | * is not active. We have to update ConfigRomHeader and |
| 2319 | * BusOptions manually, and the write to ConfigROMmap takes |
| 2320 | * effect immediately. We tie this to the enabling of the |
| 2321 | * link, so we have a valid config rom before enabling - the |
| 2322 | * OHCI requires that ConfigROMhdr and BusOptions have valid |
| 2323 | * values before enabling. |
| 2324 | * |
| 2325 | * However, when the ConfigROMmap is written, some controllers |
| 2326 | * always read back quadlets 0 and 2 from the config rom to |
| 2327 | * the ConfigRomHeader and BusOptions registers on bus reset. |
| 2328 | * They shouldn't do that in this initial case where the link |
| 2329 | * isn't enabled. This means we have to use the same |
| 2330 | * workaround here, setting the bus header to 0 and then write |
| 2331 | * the right values in the bus reset tasklet. |
| 2332 | */ |
| 2333 | |
Kristian Høgsberg | 0bd243c | 2007-06-05 19:27:05 -0400 | [diff] [blame] | 2334 | if (config_rom) { |
| 2335 | ohci->next_config_rom = |
| 2336 | dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 2337 | &ohci->next_config_rom_bus, |
| 2338 | GFP_KERNEL); |
| 2339 | if (ohci->next_config_rom == NULL) |
| 2340 | return -ENOMEM; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2341 | |
Stefan Richter | 8e85973 | 2009-10-08 00:41:59 +0200 | [diff] [blame] | 2342 | copy_config_rom(ohci->next_config_rom, config_rom, length); |
Kristian Høgsberg | 0bd243c | 2007-06-05 19:27:05 -0400 | [diff] [blame] | 2343 | } else { |
| 2344 | /* |
| 2345 | * In the suspend case, config_rom is NULL, which |
| 2346 | * means that we just reuse the old config rom. |
| 2347 | */ |
| 2348 | ohci->next_config_rom = ohci->config_rom; |
| 2349 | ohci->next_config_rom_bus = ohci->config_rom_bus; |
| 2350 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2351 | |
Stefan Richter | 8e85973 | 2009-10-08 00:41:59 +0200 | [diff] [blame] | 2352 | ohci->next_header = ohci->next_config_rom[0]; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2353 | ohci->next_config_rom[0] = 0; |
| 2354 | reg_write(ohci, OHCI1394_ConfigROMhdr, 0); |
Kristian Høgsberg | 0bd243c | 2007-06-05 19:27:05 -0400 | [diff] [blame] | 2355 | reg_write(ohci, OHCI1394_BusOptions, |
| 2356 | be32_to_cpu(ohci->next_config_rom[2])); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2357 | reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus); |
| 2358 | |
| 2359 | reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000); |
| 2360 | |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 2361 | if (!(ohci->quirks & QUIRK_NO_MSI)) |
| 2362 | pci_enable_msi(dev); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2363 | if (request_irq(dev->irq, irq_handler, |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 2364 | pci_dev_msi_enabled(dev) ? 0 : IRQF_SHARED, |
| 2365 | ohci_driver_name, ohci)) { |
| 2366 | fw_error("Failed to allocate interrupt %d.\n", dev->irq); |
| 2367 | pci_disable_msi(dev); |
Stefan Richter | a01e836 | 2011-08-11 20:40:42 +0200 | [diff] [blame] | 2368 | |
| 2369 | if (config_rom) { |
| 2370 | dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 2371 | ohci->next_config_rom, |
| 2372 | ohci->next_config_rom_bus); |
| 2373 | ohci->next_config_rom = NULL; |
| 2374 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2375 | return -EIO; |
| 2376 | } |
| 2377 | |
Stefan Richter | 148c786 | 2010-06-05 11:46:49 +0200 | [diff] [blame] | 2378 | irqs = OHCI1394_reqTxComplete | OHCI1394_respTxComplete | |
| 2379 | OHCI1394_RQPkt | OHCI1394_RSPkt | |
| 2380 | OHCI1394_isochTx | OHCI1394_isochRx | |
| 2381 | OHCI1394_postedWriteErr | |
| 2382 | OHCI1394_selfIDComplete | |
| 2383 | OHCI1394_regAccessFail | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2384 | OHCI1394_cycle64Seconds | |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 2385 | OHCI1394_cycleInconsistent | |
| 2386 | OHCI1394_unrecoverableError | |
| 2387 | OHCI1394_cycleTooLong | |
Stefan Richter | 148c786 | 2010-06-05 11:46:49 +0200 | [diff] [blame] | 2388 | OHCI1394_masterIntEnable; |
| 2389 | if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS) |
| 2390 | irqs |= OHCI1394_busReset; |
| 2391 | reg_write(ohci, OHCI1394_IntMaskSet, irqs); |
| 2392 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2393 | reg_write(ohci, OHCI1394_HCControlSet, |
| 2394 | OHCI1394_HCControl_linkEnable | |
| 2395 | OHCI1394_HCControl_BIBimageValid); |
Clemens Ladisch | ecf8328 | 2011-04-11 09:56:12 +0200 | [diff] [blame] | 2396 | |
| 2397 | reg_write(ohci, OHCI1394_LinkControlSet, |
| 2398 | OHCI1394_LinkControl_rcvSelfID | |
| 2399 | OHCI1394_LinkControl_rcvPhyPkt); |
| 2400 | |
| 2401 | ar_context_run(&ohci->ar_request_ctx); |
Clemens Ladisch | dd6254e | 2011-05-16 08:10:10 +0200 | [diff] [blame] | 2402 | ar_context_run(&ohci->ar_response_ctx); |
| 2403 | |
| 2404 | flush_writes(ohci); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2405 | |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 2406 | /* We are ready to go, reset bus to finish initialization. */ |
| 2407 | fw_schedule_bus_reset(&ohci->card, false, true); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2408 | |
| 2409 | return 0; |
| 2410 | } |
| 2411 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 2412 | static int ohci_set_config_rom(struct fw_card *card, |
Stefan Richter | 8e85973 | 2009-10-08 00:41:59 +0200 | [diff] [blame] | 2413 | const __be32 *config_rom, size_t length) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2414 | { |
| 2415 | struct fw_ohci *ohci; |
| 2416 | unsigned long flags; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2417 | __be32 *next_config_rom; |
Stefan Richter | f5101d5 | 2008-03-14 00:27:49 +0100 | [diff] [blame] | 2418 | dma_addr_t uninitialized_var(next_config_rom_bus); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2419 | |
| 2420 | ohci = fw_ohci(card); |
| 2421 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 2422 | /* |
| 2423 | * When the OHCI controller is enabled, the config rom update |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2424 | * mechanism is a bit tricky, but easy enough to use. See |
| 2425 | * section 5.5.6 in the OHCI specification. |
| 2426 | * |
| 2427 | * The OHCI controller caches the new config rom address in a |
| 2428 | * shadow register (ConfigROMmapNext) and needs a bus reset |
| 2429 | * for the changes to take place. When the bus reset is |
| 2430 | * detected, the controller loads the new values for the |
| 2431 | * ConfigRomHeader and BusOptions registers from the specified |
| 2432 | * config rom and loads ConfigROMmap from the ConfigROMmapNext |
| 2433 | * shadow register. All automatically and atomically. |
| 2434 | * |
| 2435 | * Now, there's a twist to this story. The automatic load of |
| 2436 | * ConfigRomHeader and BusOptions doesn't honor the |
| 2437 | * noByteSwapData bit, so with a be32 config rom, the |
| 2438 | * controller will load be32 values in to these registers |
| 2439 | * during the atomic update, even on litte endian |
| 2440 | * architectures. The workaround we use is to put a 0 in the |
| 2441 | * header quadlet; 0 is endian agnostic and means that the |
| 2442 | * config rom isn't ready yet. In the bus reset tasklet we |
| 2443 | * then set up the real values for the two registers. |
| 2444 | * |
| 2445 | * We use ohci->lock to avoid racing with the code that sets |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 2446 | * ohci->next_config_rom to NULL (see bus_reset_work). |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2447 | */ |
| 2448 | |
| 2449 | next_config_rom = |
| 2450 | dma_alloc_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 2451 | &next_config_rom_bus, GFP_KERNEL); |
| 2452 | if (next_config_rom == NULL) |
| 2453 | return -ENOMEM; |
| 2454 | |
| 2455 | spin_lock_irqsave(&ohci->lock, flags); |
| 2456 | |
B.J. Buchalter | 2e053a2 | 2011-05-02 13:33:42 -0400 | [diff] [blame] | 2457 | /* |
| 2458 | * If there is not an already pending config_rom update, |
| 2459 | * push our new allocation into the ohci->next_config_rom |
| 2460 | * and then mark the local variable as null so that we |
| 2461 | * won't deallocate the new buffer. |
| 2462 | * |
| 2463 | * OTOH, if there is a pending config_rom update, just |
| 2464 | * use that buffer with the new config_rom data, and |
| 2465 | * let this routine free the unused DMA allocation. |
| 2466 | */ |
| 2467 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2468 | if (ohci->next_config_rom == NULL) { |
| 2469 | ohci->next_config_rom = next_config_rom; |
| 2470 | ohci->next_config_rom_bus = next_config_rom_bus; |
B.J. Buchalter | 2e053a2 | 2011-05-02 13:33:42 -0400 | [diff] [blame] | 2471 | next_config_rom = NULL; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2472 | } |
| 2473 | |
B.J. Buchalter | 2e053a2 | 2011-05-02 13:33:42 -0400 | [diff] [blame] | 2474 | copy_config_rom(ohci->next_config_rom, config_rom, length); |
| 2475 | |
| 2476 | ohci->next_header = config_rom[0]; |
| 2477 | ohci->next_config_rom[0] = 0; |
| 2478 | |
| 2479 | reg_write(ohci, OHCI1394_ConfigROMmap, ohci->next_config_rom_bus); |
| 2480 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2481 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 2482 | |
B.J. Buchalter | 2e053a2 | 2011-05-02 13:33:42 -0400 | [diff] [blame] | 2483 | /* If we didn't use the DMA allocation, delete it. */ |
| 2484 | if (next_config_rom != NULL) |
| 2485 | dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 2486 | next_config_rom, next_config_rom_bus); |
| 2487 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 2488 | /* |
| 2489 | * Now initiate a bus reset to have the changes take |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2490 | * effect. We clean up the old config rom memory and DMA |
| 2491 | * mappings in the bus reset tasklet, since the OHCI |
| 2492 | * controller could need to access it before the bus reset |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 2493 | * takes effect. |
| 2494 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2495 | |
B.J. Buchalter | 2e053a2 | 2011-05-02 13:33:42 -0400 | [diff] [blame] | 2496 | fw_schedule_bus_reset(&ohci->card, true, true); |
| 2497 | |
| 2498 | return 0; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2499 | } |
| 2500 | |
| 2501 | static void ohci_send_request(struct fw_card *card, struct fw_packet *packet) |
| 2502 | { |
| 2503 | struct fw_ohci *ohci = fw_ohci(card); |
| 2504 | |
| 2505 | at_context_transmit(&ohci->at_request_ctx, packet); |
| 2506 | } |
| 2507 | |
| 2508 | static void ohci_send_response(struct fw_card *card, struct fw_packet *packet) |
| 2509 | { |
| 2510 | struct fw_ohci *ohci = fw_ohci(card); |
| 2511 | |
| 2512 | at_context_transmit(&ohci->at_response_ctx, packet); |
| 2513 | } |
| 2514 | |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 2515 | static int ohci_cancel_packet(struct fw_card *card, struct fw_packet *packet) |
| 2516 | { |
| 2517 | struct fw_ohci *ohci = fw_ohci(card); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 2518 | struct context *ctx = &ohci->at_request_ctx; |
| 2519 | struct driver_data *driver_data = packet->driver_data; |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2520 | int ret = -ENOENT; |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 2521 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 2522 | tasklet_disable(&ctx->tasklet); |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 2523 | |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 2524 | if (packet->ack != 0) |
| 2525 | goto out; |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 2526 | |
Stefan Richter | 19593ff | 2009-10-14 20:40:10 +0200 | [diff] [blame] | 2527 | if (packet->payload_mapped) |
Stefan Richter | 1d1dc5e | 2008-12-10 00:20:38 +0100 | [diff] [blame] | 2528 | dma_unmap_single(ohci->card.device, packet->payload_bus, |
| 2529 | packet->payload_length, DMA_TO_DEVICE); |
| 2530 | |
Stefan Richter | ad3c0fe | 2008-03-20 22:04:36 +0100 | [diff] [blame] | 2531 | log_ar_at_event('T', packet->speed, packet->header, 0x20); |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 2532 | driver_data->packet = NULL; |
| 2533 | packet->ack = RCODE_CANCELLED; |
| 2534 | packet->callback(packet, &ohci->card, packet->ack); |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2535 | ret = 0; |
Kristian Høgsberg | f319b6a | 2007-03-07 12:12:49 -0500 | [diff] [blame] | 2536 | out: |
| 2537 | tasklet_enable(&ctx->tasklet); |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 2538 | |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2539 | return ret; |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 2540 | } |
| 2541 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 2542 | static int ohci_enable_phys_dma(struct fw_card *card, |
| 2543 | int node_id, int generation) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2544 | { |
Stefan Richter | 080de8c | 2008-02-28 20:54:43 +0100 | [diff] [blame] | 2545 | #ifdef CONFIG_FIREWIRE_OHCI_REMOTE_DMA |
| 2546 | return 0; |
| 2547 | #else |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2548 | struct fw_ohci *ohci = fw_ohci(card); |
| 2549 | unsigned long flags; |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2550 | int n, ret = 0; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2551 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 2552 | /* |
| 2553 | * FIXME: Make sure this bitmask is cleared when we clear the busReset |
| 2554 | * interrupt bit. Clear physReqResourceAllBuses on bus reset. |
| 2555 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2556 | |
| 2557 | spin_lock_irqsave(&ohci->lock, flags); |
| 2558 | |
| 2559 | if (ohci->generation != generation) { |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2560 | ret = -ESTALE; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2561 | goto out; |
| 2562 | } |
| 2563 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 2564 | /* |
| 2565 | * Note, if the node ID contains a non-local bus ID, physical DMA is |
| 2566 | * enabled for _all_ nodes on remote buses. |
| 2567 | */ |
Stefan Richter | 907293d | 2007-01-23 21:11:43 +0100 | [diff] [blame] | 2568 | |
| 2569 | n = (node_id & 0xffc0) == LOCAL_BUS ? node_id & 0x3f : 63; |
| 2570 | if (n < 32) |
| 2571 | reg_write(ohci, OHCI1394_PhyReqFilterLoSet, 1 << n); |
| 2572 | else |
| 2573 | reg_write(ohci, OHCI1394_PhyReqFilterHiSet, 1 << (n - 32)); |
| 2574 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2575 | flush_writes(ohci); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2576 | out: |
Stefan Richter | 6cad95f | 2007-01-21 20:46:45 +0100 | [diff] [blame] | 2577 | spin_unlock_irqrestore(&ohci->lock, flags); |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2578 | |
| 2579 | return ret; |
Stefan Richter | 080de8c | 2008-02-28 20:54:43 +0100 | [diff] [blame] | 2580 | #endif /* CONFIG_FIREWIRE_OHCI_REMOTE_DMA */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2581 | } |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 2582 | |
Stefan Richter | 0fcff4e | 2010-06-12 20:35:52 +0200 | [diff] [blame] | 2583 | static u32 ohci_read_csr(struct fw_card *card, int csr_offset) |
Kristian Høgsberg | d60d7f1 | 2007-03-07 12:12:56 -0500 | [diff] [blame] | 2584 | { |
| 2585 | struct fw_ohci *ohci = fw_ohci(card); |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2586 | unsigned long flags; |
| 2587 | u32 value; |
Kristian Høgsberg | d60d7f1 | 2007-03-07 12:12:56 -0500 | [diff] [blame] | 2588 | |
Clemens Ladisch | 60d3297 | 2010-06-10 08:24:35 +0200 | [diff] [blame] | 2589 | switch (csr_offset) { |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2590 | case CSR_STATE_CLEAR: |
| 2591 | case CSR_STATE_SET: |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2592 | if (ohci->is_root && |
| 2593 | (reg_read(ohci, OHCI1394_LinkControlSet) & |
| 2594 | OHCI1394_LinkControl_cycleMaster)) |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 2595 | value = CSR_STATE_BIT_CMSTR; |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2596 | else |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 2597 | value = 0; |
| 2598 | if (ohci->csr_state_setclear_abdicate) |
| 2599 | value |= CSR_STATE_BIT_ABDICATE; |
Stefan Richter | 4a9bde9 | 2010-02-20 22:24:43 +0100 | [diff] [blame] | 2600 | |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 2601 | return value; |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2602 | |
Clemens Ladisch | 506f1a3 | 2010-06-10 08:25:19 +0200 | [diff] [blame] | 2603 | case CSR_NODE_IDS: |
| 2604 | return reg_read(ohci, OHCI1394_NodeID) << 16; |
| 2605 | |
Clemens Ladisch | 60d3297 | 2010-06-10 08:24:35 +0200 | [diff] [blame] | 2606 | case CSR_CYCLE_TIME: |
| 2607 | return get_cycle_time(ohci); |
| 2608 | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2609 | case CSR_BUS_TIME: |
| 2610 | /* |
| 2611 | * We might be called just after the cycle timer has wrapped |
| 2612 | * around but just before the cycle64Seconds handler, so we |
| 2613 | * better check here, too, if the bus time needs to be updated. |
| 2614 | */ |
| 2615 | spin_lock_irqsave(&ohci->lock, flags); |
| 2616 | value = update_bus_time(ohci); |
| 2617 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 2618 | return value; |
| 2619 | |
Clemens Ladisch | 27a2329 | 2010-06-10 08:34:13 +0200 | [diff] [blame] | 2620 | case CSR_BUSY_TIMEOUT: |
| 2621 | value = reg_read(ohci, OHCI1394_ATRetries); |
| 2622 | return (value >> 4) & 0x0ffff00f; |
| 2623 | |
Clemens Ladisch | a1a1132 | 2010-06-10 08:35:06 +0200 | [diff] [blame] | 2624 | case CSR_PRIORITY_BUDGET: |
| 2625 | return (reg_read(ohci, OHCI1394_FairnessControl) & 0x3f) | |
| 2626 | (ohci->pri_req_max << 8); |
| 2627 | |
Clemens Ladisch | 60d3297 | 2010-06-10 08:24:35 +0200 | [diff] [blame] | 2628 | default: |
| 2629 | WARN_ON(1); |
| 2630 | return 0; |
Clemens Ladisch | b677532 | 2010-01-20 09:58:02 +0100 | [diff] [blame] | 2631 | } |
Clemens Ladisch | 60d3297 | 2010-06-10 08:24:35 +0200 | [diff] [blame] | 2632 | } |
Kristian Høgsberg | d60d7f1 | 2007-03-07 12:12:56 -0500 | [diff] [blame] | 2633 | |
Stefan Richter | 0fcff4e | 2010-06-12 20:35:52 +0200 | [diff] [blame] | 2634 | static void ohci_write_csr(struct fw_card *card, int csr_offset, u32 value) |
Clemens Ladisch | 506f1a3 | 2010-06-10 08:25:19 +0200 | [diff] [blame] | 2635 | { |
| 2636 | struct fw_ohci *ohci = fw_ohci(card); |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2637 | unsigned long flags; |
Clemens Ladisch | 506f1a3 | 2010-06-10 08:25:19 +0200 | [diff] [blame] | 2638 | |
| 2639 | switch (csr_offset) { |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2640 | case CSR_STATE_CLEAR: |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2641 | if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) { |
| 2642 | reg_write(ohci, OHCI1394_LinkControlClear, |
| 2643 | OHCI1394_LinkControl_cycleMaster); |
| 2644 | flush_writes(ohci); |
| 2645 | } |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 2646 | if (value & CSR_STATE_BIT_ABDICATE) |
| 2647 | ohci->csr_state_setclear_abdicate = false; |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2648 | break; |
| 2649 | |
| 2650 | case CSR_STATE_SET: |
| 2651 | if ((value & CSR_STATE_BIT_CMSTR) && ohci->is_root) { |
| 2652 | reg_write(ohci, OHCI1394_LinkControlSet, |
| 2653 | OHCI1394_LinkControl_cycleMaster); |
| 2654 | flush_writes(ohci); |
| 2655 | } |
Stefan Richter | c8a94de | 2010-06-12 20:34:50 +0200 | [diff] [blame] | 2656 | if (value & CSR_STATE_BIT_ABDICATE) |
| 2657 | ohci->csr_state_setclear_abdicate = true; |
Clemens Ladisch | 4ffb7a6a | 2010-06-10 08:36:37 +0200 | [diff] [blame] | 2658 | break; |
| 2659 | |
Clemens Ladisch | 506f1a3 | 2010-06-10 08:25:19 +0200 | [diff] [blame] | 2660 | case CSR_NODE_IDS: |
| 2661 | reg_write(ohci, OHCI1394_NodeID, value >> 16); |
| 2662 | flush_writes(ohci); |
| 2663 | break; |
| 2664 | |
Clemens Ladisch | 9ab5071 | 2010-06-10 08:26:48 +0200 | [diff] [blame] | 2665 | case CSR_CYCLE_TIME: |
| 2666 | reg_write(ohci, OHCI1394_IsochronousCycleTimer, value); |
| 2667 | reg_write(ohci, OHCI1394_IntEventSet, |
| 2668 | OHCI1394_cycleInconsistent); |
| 2669 | flush_writes(ohci); |
| 2670 | break; |
| 2671 | |
Clemens Ladisch | a48777e | 2010-06-10 08:33:07 +0200 | [diff] [blame] | 2672 | case CSR_BUS_TIME: |
| 2673 | spin_lock_irqsave(&ohci->lock, flags); |
| 2674 | ohci->bus_time = (ohci->bus_time & 0x7f) | (value & ~0x7f); |
| 2675 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 2676 | break; |
| 2677 | |
Clemens Ladisch | 27a2329 | 2010-06-10 08:34:13 +0200 | [diff] [blame] | 2678 | case CSR_BUSY_TIMEOUT: |
| 2679 | value = (value & 0xf) | ((value & 0xf) << 4) | |
| 2680 | ((value & 0xf) << 8) | ((value & 0x0ffff000) << 4); |
| 2681 | reg_write(ohci, OHCI1394_ATRetries, value); |
| 2682 | flush_writes(ohci); |
| 2683 | break; |
| 2684 | |
Clemens Ladisch | a1a1132 | 2010-06-10 08:35:06 +0200 | [diff] [blame] | 2685 | case CSR_PRIORITY_BUDGET: |
| 2686 | reg_write(ohci, OHCI1394_FairnessControl, value & 0x3f); |
| 2687 | flush_writes(ohci); |
| 2688 | break; |
| 2689 | |
Clemens Ladisch | 506f1a3 | 2010-06-10 08:25:19 +0200 | [diff] [blame] | 2690 | default: |
| 2691 | WARN_ON(1); |
| 2692 | break; |
| 2693 | } |
Kristian Høgsberg | d60d7f1 | 2007-03-07 12:12:56 -0500 | [diff] [blame] | 2694 | } |
| 2695 | |
David Moore | 1aa292b | 2008-07-22 23:23:40 -0700 | [diff] [blame] | 2696 | static void copy_iso_headers(struct iso_context *ctx, void *p) |
| 2697 | { |
| 2698 | int i = ctx->header_length; |
| 2699 | |
| 2700 | if (i + ctx->base.header_size > PAGE_SIZE) |
| 2701 | return; |
| 2702 | |
| 2703 | /* |
| 2704 | * The iso header is byteswapped to little endian by |
| 2705 | * the controller, but the remaining header quadlets |
| 2706 | * are big endian. We want to present all the headers |
| 2707 | * as big endian, so we have to swap the first quadlet. |
| 2708 | */ |
| 2709 | if (ctx->base.header_size > 0) |
| 2710 | *(u32 *) (ctx->header + i) = __swab32(*(u32 *) (p + 4)); |
| 2711 | if (ctx->base.header_size > 4) |
| 2712 | *(u32 *) (ctx->header + i + 4) = __swab32(*(u32 *) p); |
| 2713 | if (ctx->base.header_size > 8) |
| 2714 | memcpy(ctx->header + i + 8, p + 8, ctx->base.header_size - 8); |
| 2715 | ctx->header_length += ctx->base.header_size; |
| 2716 | } |
| 2717 | |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2718 | static int handle_ir_packet_per_buffer(struct context *context, |
| 2719 | struct descriptor *d, |
| 2720 | struct descriptor *last) |
| 2721 | { |
| 2722 | struct iso_context *ctx = |
| 2723 | container_of(context, struct iso_context, context); |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 2724 | struct descriptor *pd; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2725 | __le32 *ir_header; |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 2726 | void *p; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2727 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2728 | for (pd = d; pd <= last; pd++) |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 2729 | if (pd->transfer_status) |
| 2730 | break; |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 2731 | if (pd > last) |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2732 | /* Descriptor(s) not done yet, stop iteration */ |
| 2733 | return 0; |
| 2734 | |
David Moore | 1aa292b | 2008-07-22 23:23:40 -0700 | [diff] [blame] | 2735 | p = last + 1; |
| 2736 | copy_iso_headers(ctx, p); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2737 | |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 2738 | if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) { |
| 2739 | ir_header = (__le32 *) p; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2740 | ctx->base.callback.sc(&ctx->base, |
| 2741 | le32_to_cpu(ir_header[0]) & 0xffff, |
| 2742 | ctx->header_length, ctx->header, |
| 2743 | ctx->base.callback_data); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2744 | ctx->header_length = 0; |
| 2745 | } |
| 2746 | |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 2747 | return 1; |
| 2748 | } |
| 2749 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2750 | /* d == last because each descriptor block is only a single descriptor. */ |
| 2751 | static int handle_ir_buffer_fill(struct context *context, |
| 2752 | struct descriptor *d, |
| 2753 | struct descriptor *last) |
| 2754 | { |
| 2755 | struct iso_context *ctx = |
| 2756 | container_of(context, struct iso_context, context); |
| 2757 | |
| 2758 | if (!last->transfer_status) |
| 2759 | /* Descriptor(s) not done yet, stop iteration */ |
| 2760 | return 0; |
| 2761 | |
| 2762 | if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) |
| 2763 | ctx->base.callback.mc(&ctx->base, |
| 2764 | le32_to_cpu(last->data_address) + |
| 2765 | le16_to_cpu(last->req_count) - |
| 2766 | le16_to_cpu(last->res_count), |
| 2767 | ctx->base.callback_data); |
| 2768 | |
| 2769 | return 1; |
| 2770 | } |
| 2771 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 2772 | static int handle_it_packet(struct context *context, |
| 2773 | struct descriptor *d, |
| 2774 | struct descriptor *last) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2775 | { |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 2776 | struct iso_context *ctx = |
| 2777 | container_of(context, struct iso_context, context); |
Jay Fenlason | 31769ce | 2009-11-21 00:05:56 +0100 | [diff] [blame] | 2778 | int i; |
| 2779 | struct descriptor *pd; |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 2780 | |
Jay Fenlason | 31769ce | 2009-11-21 00:05:56 +0100 | [diff] [blame] | 2781 | for (pd = d; pd <= last; pd++) |
| 2782 | if (pd->transfer_status) |
| 2783 | break; |
| 2784 | if (pd > last) |
| 2785 | /* Descriptor(s) not done yet, stop iteration */ |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 2786 | return 0; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2787 | |
Jay Fenlason | 31769ce | 2009-11-21 00:05:56 +0100 | [diff] [blame] | 2788 | i = ctx->header_length; |
| 2789 | if (i + 4 < PAGE_SIZE) { |
| 2790 | /* Present this value as big-endian to match the receive code */ |
| 2791 | *(__be32 *)(ctx->header + i) = cpu_to_be32( |
| 2792 | ((u32)le16_to_cpu(pd->transfer_status) << 16) | |
| 2793 | le16_to_cpu(pd->res_count)); |
| 2794 | ctx->header_length += 4; |
| 2795 | } |
| 2796 | if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) { |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2797 | ctx->base.callback.sc(&ctx->base, le16_to_cpu(last->res_count), |
| 2798 | ctx->header_length, ctx->header, |
| 2799 | ctx->base.callback_data); |
Jay Fenlason | 31769ce | 2009-11-21 00:05:56 +0100 | [diff] [blame] | 2800 | ctx->header_length = 0; |
| 2801 | } |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 2802 | return 1; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2803 | } |
| 2804 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2805 | static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels) |
| 2806 | { |
| 2807 | u32 hi = channels >> 32, lo = channels; |
| 2808 | |
| 2809 | reg_write(ohci, OHCI1394_IRMultiChanMaskHiClear, ~hi); |
| 2810 | reg_write(ohci, OHCI1394_IRMultiChanMaskLoClear, ~lo); |
| 2811 | reg_write(ohci, OHCI1394_IRMultiChanMaskHiSet, hi); |
| 2812 | reg_write(ohci, OHCI1394_IRMultiChanMaskLoSet, lo); |
| 2813 | mmiowb(); |
| 2814 | ohci->mc_channels = channels; |
| 2815 | } |
| 2816 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 2817 | static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card, |
Stefan Richter | 4817ed2 | 2008-12-21 16:39:46 +0100 | [diff] [blame] | 2818 | int type, int channel, size_t header_size) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2819 | { |
| 2820 | struct fw_ohci *ohci = fw_ohci(card); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2821 | struct iso_context *uninitialized_var(ctx); |
| 2822 | descriptor_callback_t uninitialized_var(callback); |
| 2823 | u64 *uninitialized_var(channels); |
| 2824 | u32 *uninitialized_var(mask), uninitialized_var(regs); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2825 | unsigned long flags; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2826 | int index, ret = -EBUSY; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2827 | |
| 2828 | spin_lock_irqsave(&ohci->lock, flags); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2829 | |
| 2830 | switch (type) { |
| 2831 | case FW_ISO_CONTEXT_TRANSMIT: |
| 2832 | mask = &ohci->it_context_mask; |
| 2833 | callback = handle_it_packet; |
| 2834 | index = ffs(*mask) - 1; |
| 2835 | if (index >= 0) { |
| 2836 | *mask &= ~(1 << index); |
| 2837 | regs = OHCI1394_IsoXmitContextBase(index); |
| 2838 | ctx = &ohci->it_context_list[index]; |
| 2839 | } |
| 2840 | break; |
| 2841 | |
| 2842 | case FW_ISO_CONTEXT_RECEIVE: |
| 2843 | channels = &ohci->ir_context_channels; |
| 2844 | mask = &ohci->ir_context_mask; |
| 2845 | callback = handle_ir_packet_per_buffer; |
| 2846 | index = *channels & 1ULL << channel ? ffs(*mask) - 1 : -1; |
| 2847 | if (index >= 0) { |
| 2848 | *channels &= ~(1ULL << channel); |
| 2849 | *mask &= ~(1 << index); |
| 2850 | regs = OHCI1394_IsoRcvContextBase(index); |
| 2851 | ctx = &ohci->ir_context_list[index]; |
| 2852 | } |
| 2853 | break; |
| 2854 | |
| 2855 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
| 2856 | mask = &ohci->ir_context_mask; |
| 2857 | callback = handle_ir_buffer_fill; |
| 2858 | index = !ohci->mc_allocated ? ffs(*mask) - 1 : -1; |
| 2859 | if (index >= 0) { |
| 2860 | ohci->mc_allocated = true; |
| 2861 | *mask &= ~(1 << index); |
| 2862 | regs = OHCI1394_IsoRcvContextBase(index); |
| 2863 | ctx = &ohci->ir_context_list[index]; |
| 2864 | } |
| 2865 | break; |
| 2866 | |
| 2867 | default: |
| 2868 | index = -1; |
| 2869 | ret = -ENOSYS; |
Stefan Richter | 4817ed2 | 2008-12-21 16:39:46 +0100 | [diff] [blame] | 2870 | } |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2871 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2872 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 2873 | |
| 2874 | if (index < 0) |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2875 | return ERR_PTR(ret); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2876 | |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 2877 | memset(ctx, 0, sizeof(*ctx)); |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2878 | ctx->header_length = 0; |
| 2879 | ctx->header = (void *) __get_free_page(GFP_KERNEL); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2880 | if (ctx->header == NULL) { |
| 2881 | ret = -ENOMEM; |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2882 | goto out; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2883 | } |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2884 | ret = context_init(&ctx->context, ohci, regs, callback); |
| 2885 | if (ret < 0) |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2886 | goto out_with_header; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2887 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2888 | if (type == FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL) |
| 2889 | set_multichannel_mask(ohci, 0); |
| 2890 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2891 | return &ctx->base; |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2892 | |
| 2893 | out_with_header: |
| 2894 | free_page((unsigned long)ctx->header); |
| 2895 | out: |
| 2896 | spin_lock_irqsave(&ohci->lock, flags); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2897 | |
| 2898 | switch (type) { |
| 2899 | case FW_ISO_CONTEXT_RECEIVE: |
| 2900 | *channels |= 1ULL << channel; |
| 2901 | break; |
| 2902 | |
| 2903 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
| 2904 | ohci->mc_allocated = false; |
| 2905 | break; |
| 2906 | } |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2907 | *mask |= 1 << index; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2908 | |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2909 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 2910 | |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 2911 | return ERR_PTR(ret); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2912 | } |
| 2913 | |
Kristian Høgsberg | eb0306e | 2007-03-14 17:34:54 -0400 | [diff] [blame] | 2914 | static int ohci_start_iso(struct fw_iso_context *base, |
| 2915 | s32 cycle, u32 sync, u32 tags) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2916 | { |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 2917 | struct iso_context *ctx = container_of(base, struct iso_context, base); |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 2918 | struct fw_ohci *ohci = ctx->context.ohci; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2919 | u32 control = IR_CONTEXT_ISOCH_HEADER, match; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2920 | int index; |
| 2921 | |
Clemens Ladisch | 44b74d9 | 2011-02-23 09:27:40 +0100 | [diff] [blame] | 2922 | /* the controller cannot start without any queued packets */ |
| 2923 | if (ctx->context.last->branch_address == 0) |
| 2924 | return -ENODATA; |
| 2925 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2926 | switch (ctx->base.type) { |
| 2927 | case FW_ISO_CONTEXT_TRANSMIT: |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 2928 | index = ctx - ohci->it_context_list; |
Kristian Høgsberg | 8a2f7d9 | 2007-03-28 14:26:10 -0400 | [diff] [blame] | 2929 | match = 0; |
| 2930 | if (cycle >= 0) |
| 2931 | match = IT_CONTEXT_CYCLE_MATCH_ENABLE | |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 2932 | (cycle & 0x7fff) << 16; |
Kristian Høgsberg | 21efb3c | 2007-02-16 17:34:50 -0500 | [diff] [blame] | 2933 | |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 2934 | reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 1 << index); |
| 2935 | reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, 1 << index); |
Kristian Høgsberg | 8a2f7d9 | 2007-03-28 14:26:10 -0400 | [diff] [blame] | 2936 | context_run(&ctx->context, match); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2937 | break; |
| 2938 | |
| 2939 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
| 2940 | control |= IR_CONTEXT_BUFFER_FILL|IR_CONTEXT_MULTI_CHANNEL_MODE; |
| 2941 | /* fall through */ |
| 2942 | case FW_ISO_CONTEXT_RECEIVE: |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 2943 | index = ctx - ohci->ir_context_list; |
Kristian Høgsberg | 8a2f7d9 | 2007-03-28 14:26:10 -0400 | [diff] [blame] | 2944 | match = (tags << 28) | (sync << 8) | ctx->base.channel; |
| 2945 | if (cycle >= 0) { |
| 2946 | match |= (cycle & 0x07fff) << 12; |
| 2947 | control |= IR_CONTEXT_CYCLE_MATCH_ENABLE; |
| 2948 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2949 | |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 2950 | reg_write(ohci, OHCI1394_IsoRecvIntEventClear, 1 << index); |
| 2951 | reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, 1 << index); |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 2952 | reg_write(ohci, CONTEXT_MATCH(ctx->context.regs), match); |
Kristian Høgsberg | 8a2f7d9 | 2007-03-28 14:26:10 -0400 | [diff] [blame] | 2953 | context_run(&ctx->context, control); |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 2954 | |
| 2955 | ctx->sync = sync; |
| 2956 | ctx->tags = tags; |
| 2957 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2958 | break; |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 2959 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2960 | |
| 2961 | return 0; |
| 2962 | } |
| 2963 | |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2964 | static int ohci_stop_iso(struct fw_iso_context *base) |
| 2965 | { |
| 2966 | struct fw_ohci *ohci = fw_ohci(base->card); |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 2967 | struct iso_context *ctx = container_of(base, struct iso_context, base); |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2968 | int index; |
| 2969 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2970 | switch (ctx->base.type) { |
| 2971 | case FW_ISO_CONTEXT_TRANSMIT: |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2972 | index = ctx - ohci->it_context_list; |
| 2973 | reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 1 << index); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2974 | break; |
| 2975 | |
| 2976 | case FW_ISO_CONTEXT_RECEIVE: |
| 2977 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2978 | index = ctx - ohci->ir_context_list; |
| 2979 | reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, 1 << index); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 2980 | break; |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2981 | } |
| 2982 | flush_writes(ohci); |
| 2983 | context_stop(&ctx->context); |
Clemens Ladisch | e81cbeb | 2011-02-16 10:32:11 +0100 | [diff] [blame] | 2984 | tasklet_kill(&ctx->context.tasklet); |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2985 | |
| 2986 | return 0; |
| 2987 | } |
| 2988 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2989 | static void ohci_free_iso_context(struct fw_iso_context *base) |
| 2990 | { |
| 2991 | struct fw_ohci *ohci = fw_ohci(base->card); |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 2992 | struct iso_context *ctx = container_of(base, struct iso_context, base); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 2993 | unsigned long flags; |
| 2994 | int index; |
| 2995 | |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2996 | ohci_stop_iso(base); |
| 2997 | context_release(&ctx->context); |
Kristian Høgsberg | 9b32d5f | 2007-02-16 17:34:44 -0500 | [diff] [blame] | 2998 | free_page((unsigned long)ctx->header); |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 2999 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3000 | spin_lock_irqsave(&ohci->lock, flags); |
| 3001 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3002 | switch (base->type) { |
| 3003 | case FW_ISO_CONTEXT_TRANSMIT: |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3004 | index = ctx - ohci->it_context_list; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3005 | ohci->it_context_mask |= 1 << index; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3006 | break; |
| 3007 | |
| 3008 | case FW_ISO_CONTEXT_RECEIVE: |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3009 | index = ctx - ohci->ir_context_list; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3010 | ohci->ir_context_mask |= 1 << index; |
Stefan Richter | 4817ed2 | 2008-12-21 16:39:46 +0100 | [diff] [blame] | 3011 | ohci->ir_context_channels |= 1ULL << base->channel; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3012 | break; |
| 3013 | |
| 3014 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
| 3015 | index = ctx - ohci->ir_context_list; |
| 3016 | ohci->ir_context_mask |= 1 << index; |
| 3017 | ohci->ir_context_channels |= ohci->mc_channels; |
| 3018 | ohci->mc_channels = 0; |
| 3019 | ohci->mc_allocated = false; |
| 3020 | break; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3021 | } |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3022 | |
| 3023 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 3024 | } |
| 3025 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3026 | static int ohci_set_iso_channels(struct fw_iso_context *base, u64 *channels) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3027 | { |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3028 | struct fw_ohci *ohci = fw_ohci(base->card); |
| 3029 | unsigned long flags; |
| 3030 | int ret; |
| 3031 | |
| 3032 | switch (base->type) { |
| 3033 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
| 3034 | |
| 3035 | spin_lock_irqsave(&ohci->lock, flags); |
| 3036 | |
| 3037 | /* Don't allow multichannel to grab other contexts' channels. */ |
| 3038 | if (~ohci->ir_context_channels & ~ohci->mc_channels & *channels) { |
| 3039 | *channels = ohci->ir_context_channels; |
| 3040 | ret = -EBUSY; |
| 3041 | } else { |
| 3042 | set_multichannel_mask(ohci, *channels); |
| 3043 | ret = 0; |
| 3044 | } |
| 3045 | |
| 3046 | spin_unlock_irqrestore(&ohci->lock, flags); |
| 3047 | |
| 3048 | break; |
| 3049 | default: |
| 3050 | ret = -EINVAL; |
| 3051 | } |
| 3052 | |
| 3053 | return ret; |
| 3054 | } |
| 3055 | |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3056 | #ifdef CONFIG_PM |
| 3057 | static void ohci_resume_iso_dma(struct fw_ohci *ohci) |
| 3058 | { |
| 3059 | int i; |
| 3060 | struct iso_context *ctx; |
| 3061 | |
| 3062 | for (i = 0 ; i < ohci->n_ir ; i++) { |
| 3063 | ctx = &ohci->ir_context_list[i]; |
Stefan Richter | 693a50b | 2011-01-01 15:17:05 +0100 | [diff] [blame] | 3064 | if (ctx->context.running) |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3065 | ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags); |
| 3066 | } |
| 3067 | |
| 3068 | for (i = 0 ; i < ohci->n_it ; i++) { |
| 3069 | ctx = &ohci->it_context_list[i]; |
Stefan Richter | 693a50b | 2011-01-01 15:17:05 +0100 | [diff] [blame] | 3070 | if (ctx->context.running) |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3071 | ohci_start_iso(&ctx->base, 0, ctx->sync, ctx->tags); |
| 3072 | } |
| 3073 | } |
| 3074 | #endif |
| 3075 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3076 | static int queue_iso_transmit(struct iso_context *ctx, |
| 3077 | struct fw_iso_packet *packet, |
| 3078 | struct fw_iso_buffer *buffer, |
| 3079 | unsigned long payload) |
| 3080 | { |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 3081 | struct descriptor *d, *last, *pd; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3082 | struct fw_iso_packet *p; |
| 3083 | __le32 *header; |
Kristian Høgsberg | 9aad812 | 2007-02-16 17:34:38 -0500 | [diff] [blame] | 3084 | dma_addr_t d_bus, page_bus; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3085 | u32 z, header_z, payload_z, irq; |
| 3086 | u32 payload_index, payload_end_index, next_page_index; |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 3087 | int page, end_page, i, length, offset; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3088 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3089 | p = packet; |
Kristian Høgsberg | 9aad812 | 2007-02-16 17:34:38 -0500 | [diff] [blame] | 3090 | payload_index = payload; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3091 | |
| 3092 | if (p->skip) |
| 3093 | z = 1; |
| 3094 | else |
| 3095 | z = 2; |
| 3096 | if (p->header_length > 0) |
| 3097 | z++; |
| 3098 | |
| 3099 | /* Determine the first page the payload isn't contained in. */ |
| 3100 | end_page = PAGE_ALIGN(payload_index + p->payload_length) >> PAGE_SHIFT; |
| 3101 | if (p->payload_length > 0) |
| 3102 | payload_z = end_page - (payload_index >> PAGE_SHIFT); |
| 3103 | else |
| 3104 | payload_z = 0; |
| 3105 | |
| 3106 | z += payload_z; |
| 3107 | |
| 3108 | /* Get header size in number of descriptors. */ |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 3109 | header_z = DIV_ROUND_UP(p->header_length, sizeof(*d)); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3110 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 3111 | d = context_get_descriptors(&ctx->context, z + header_z, &d_bus); |
| 3112 | if (d == NULL) |
| 3113 | return -ENOMEM; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3114 | |
| 3115 | if (!p->skip) { |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 3116 | d[0].control = cpu_to_le16(DESCRIPTOR_KEY_IMMEDIATE); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3117 | d[0].req_count = cpu_to_le16(8); |
Clemens Ladisch | 7f51a10 | 2010-02-08 08:30:03 +0100 | [diff] [blame] | 3118 | /* |
| 3119 | * Link the skip address to this descriptor itself. This causes |
| 3120 | * a context to skip a cycle whenever lost cycles or FIFO |
| 3121 | * overruns occur, without dropping the data. The application |
| 3122 | * should then decide whether this is an error condition or not. |
| 3123 | * FIXME: Make the context's cycle-lost behaviour configurable? |
| 3124 | */ |
| 3125 | d[0].branch_address = cpu_to_le32(d_bus | z); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3126 | |
| 3127 | header = (__le32 *) &d[1]; |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 3128 | header[0] = cpu_to_le32(IT_HEADER_SY(p->sy) | |
| 3129 | IT_HEADER_TAG(p->tag) | |
| 3130 | IT_HEADER_TCODE(TCODE_STREAM_DATA) | |
| 3131 | IT_HEADER_CHANNEL(ctx->base.channel) | |
| 3132 | IT_HEADER_SPEED(ctx->base.speed)); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3133 | header[1] = |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 3134 | cpu_to_le32(IT_HEADER_DATA_LENGTH(p->header_length + |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3135 | p->payload_length)); |
| 3136 | } |
| 3137 | |
| 3138 | if (p->header_length > 0) { |
| 3139 | d[2].req_count = cpu_to_le16(p->header_length); |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 3140 | d[2].data_address = cpu_to_le32(d_bus + z * sizeof(*d)); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3141 | memcpy(&d[z], p->header, p->header_length); |
| 3142 | } |
| 3143 | |
| 3144 | pd = d + z - payload_z; |
| 3145 | payload_end_index = payload_index + p->payload_length; |
| 3146 | for (i = 0; i < payload_z; i++) { |
| 3147 | page = payload_index >> PAGE_SHIFT; |
| 3148 | offset = payload_index & ~PAGE_MASK; |
| 3149 | next_page_index = (page + 1) << PAGE_SHIFT; |
| 3150 | length = |
| 3151 | min(next_page_index, payload_end_index) - payload_index; |
| 3152 | pd[i].req_count = cpu_to_le16(length); |
Kristian Høgsberg | 9aad812 | 2007-02-16 17:34:38 -0500 | [diff] [blame] | 3153 | |
| 3154 | page_bus = page_private(buffer->pages[page]); |
| 3155 | pd[i].data_address = cpu_to_le32(page_bus + offset); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3156 | |
| 3157 | payload_index += length; |
| 3158 | } |
| 3159 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3160 | if (p->interrupt) |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 3161 | irq = DESCRIPTOR_IRQ_ALWAYS; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3162 | else |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 3163 | irq = DESCRIPTOR_NO_IRQ; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3164 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 3165 | last = z == 2 ? d : d + z - 1; |
Kristian Høgsberg | a77754a | 2007-05-07 20:33:35 -0400 | [diff] [blame] | 3166 | last->control |= cpu_to_le16(DESCRIPTOR_OUTPUT_LAST | |
| 3167 | DESCRIPTOR_STATUS | |
| 3168 | DESCRIPTOR_BRANCH_ALWAYS | |
Kristian Høgsberg | cbb59da | 2007-02-16 17:34:35 -0500 | [diff] [blame] | 3169 | irq); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3170 | |
Kristian Høgsberg | 3020073 | 2007-02-16 17:34:39 -0500 | [diff] [blame] | 3171 | context_append(&ctx->context, d, z, header_z); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3172 | |
| 3173 | return 0; |
| 3174 | } |
Stefan Richter | 373b2ed | 2007-03-04 14:45:18 +0100 | [diff] [blame] | 3175 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3176 | static int queue_iso_packet_per_buffer(struct iso_context *ctx, |
| 3177 | struct fw_iso_packet *packet, |
| 3178 | struct fw_iso_buffer *buffer, |
| 3179 | unsigned long payload) |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3180 | { |
Jay Fenlason | 8c0c0cc | 2009-12-11 14:23:58 -0500 | [diff] [blame] | 3181 | struct descriptor *d, *pd; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3182 | dma_addr_t d_bus, page_bus; |
| 3183 | u32 z, header_z, rest; |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3184 | int i, j, length; |
| 3185 | int page, offset, packet_count, header_size, payload_per_buffer; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3186 | |
| 3187 | /* |
David Moore | 1aa292b | 2008-07-22 23:23:40 -0700 | [diff] [blame] | 3188 | * The OHCI controller puts the isochronous header and trailer in the |
| 3189 | * buffer, so we need at least 8 bytes. |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3190 | */ |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3191 | packet_count = packet->header_length / ctx->base.header_size; |
David Moore | 1aa292b | 2008-07-22 23:23:40 -0700 | [diff] [blame] | 3192 | header_size = max(ctx->base.header_size, (size_t)8); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3193 | |
| 3194 | /* Get header size in number of descriptors. */ |
| 3195 | header_z = DIV_ROUND_UP(header_size, sizeof(*d)); |
| 3196 | page = payload >> PAGE_SHIFT; |
| 3197 | offset = payload & ~PAGE_MASK; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3198 | payload_per_buffer = packet->payload_length / packet_count; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3199 | |
| 3200 | for (i = 0; i < packet_count; i++) { |
| 3201 | /* d points to the header descriptor */ |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3202 | z = DIV_ROUND_UP(payload_per_buffer + offset, PAGE_SIZE) + 1; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3203 | d = context_get_descriptors(&ctx->context, |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3204 | z + header_z, &d_bus); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3205 | if (d == NULL) |
| 3206 | return -ENOMEM; |
| 3207 | |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3208 | d->control = cpu_to_le16(DESCRIPTOR_STATUS | |
| 3209 | DESCRIPTOR_INPUT_MORE); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3210 | if (packet->skip && i == 0) |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3211 | d->control |= cpu_to_le16(DESCRIPTOR_WAIT); |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3212 | d->req_count = cpu_to_le16(header_size); |
| 3213 | d->res_count = d->req_count; |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3214 | d->transfer_status = 0; |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3215 | d->data_address = cpu_to_le32(d_bus + (z * sizeof(*d))); |
| 3216 | |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3217 | rest = payload_per_buffer; |
Jay Fenlason | 8c0c0cc | 2009-12-11 14:23:58 -0500 | [diff] [blame] | 3218 | pd = d; |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3219 | for (j = 1; j < z; j++) { |
Jay Fenlason | 8c0c0cc | 2009-12-11 14:23:58 -0500 | [diff] [blame] | 3220 | pd++; |
David Moore | bcee893 | 2007-12-19 15:26:38 -0500 | [diff] [blame] | 3221 | pd->control = cpu_to_le16(DESCRIPTOR_STATUS | |
| 3222 | DESCRIPTOR_INPUT_MORE); |
| 3223 | |
| 3224 | if (offset + rest < PAGE_SIZE) |
| 3225 | length = rest; |
| 3226 | else |
| 3227 | length = PAGE_SIZE - offset; |
| 3228 | pd->req_count = cpu_to_le16(length); |
| 3229 | pd->res_count = pd->req_count; |
| 3230 | pd->transfer_status = 0; |
| 3231 | |
| 3232 | page_bus = page_private(buffer->pages[page]); |
| 3233 | pd->data_address = cpu_to_le32(page_bus + offset); |
| 3234 | |
| 3235 | offset = (offset + length) & ~PAGE_MASK; |
| 3236 | rest -= length; |
| 3237 | if (offset == 0) |
| 3238 | page++; |
| 3239 | } |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3240 | pd->control = cpu_to_le16(DESCRIPTOR_STATUS | |
| 3241 | DESCRIPTOR_INPUT_LAST | |
| 3242 | DESCRIPTOR_BRANCH_ALWAYS); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3243 | if (packet->interrupt && i == packet_count - 1) |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3244 | pd->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS); |
| 3245 | |
Jarod Wilson | a186b4a | 2007-12-03 13:43:12 -0500 | [diff] [blame] | 3246 | context_append(&ctx->context, d, z, header_z); |
| 3247 | } |
| 3248 | |
| 3249 | return 0; |
| 3250 | } |
| 3251 | |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3252 | static int queue_iso_buffer_fill(struct iso_context *ctx, |
| 3253 | struct fw_iso_packet *packet, |
| 3254 | struct fw_iso_buffer *buffer, |
| 3255 | unsigned long payload) |
| 3256 | { |
| 3257 | struct descriptor *d; |
| 3258 | dma_addr_t d_bus, page_bus; |
| 3259 | int page, offset, rest, z, i, length; |
| 3260 | |
| 3261 | page = payload >> PAGE_SHIFT; |
| 3262 | offset = payload & ~PAGE_MASK; |
| 3263 | rest = packet->payload_length; |
| 3264 | |
| 3265 | /* We need one descriptor for each page in the buffer. */ |
| 3266 | z = DIV_ROUND_UP(offset + rest, PAGE_SIZE); |
| 3267 | |
| 3268 | if (WARN_ON(offset & 3 || rest & 3 || page + z > buffer->page_count)) |
| 3269 | return -EFAULT; |
| 3270 | |
| 3271 | for (i = 0; i < z; i++) { |
| 3272 | d = context_get_descriptors(&ctx->context, 1, &d_bus); |
| 3273 | if (d == NULL) |
| 3274 | return -ENOMEM; |
| 3275 | |
| 3276 | d->control = cpu_to_le16(DESCRIPTOR_INPUT_MORE | |
| 3277 | DESCRIPTOR_BRANCH_ALWAYS); |
| 3278 | if (packet->skip && i == 0) |
| 3279 | d->control |= cpu_to_le16(DESCRIPTOR_WAIT); |
| 3280 | if (packet->interrupt && i == z - 1) |
| 3281 | d->control |= cpu_to_le16(DESCRIPTOR_IRQ_ALWAYS); |
| 3282 | |
| 3283 | if (offset + rest < PAGE_SIZE) |
| 3284 | length = rest; |
| 3285 | else |
| 3286 | length = PAGE_SIZE - offset; |
| 3287 | d->req_count = cpu_to_le16(length); |
| 3288 | d->res_count = d->req_count; |
| 3289 | d->transfer_status = 0; |
| 3290 | |
| 3291 | page_bus = page_private(buffer->pages[page]); |
| 3292 | d->data_address = cpu_to_le32(page_bus + offset); |
| 3293 | |
| 3294 | rest -= length; |
| 3295 | offset = 0; |
| 3296 | page++; |
| 3297 | |
| 3298 | context_append(&ctx->context, d, 1, 0); |
| 3299 | } |
| 3300 | |
| 3301 | return 0; |
| 3302 | } |
| 3303 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 3304 | static int ohci_queue_iso(struct fw_iso_context *base, |
| 3305 | struct fw_iso_packet *packet, |
| 3306 | struct fw_iso_buffer *buffer, |
| 3307 | unsigned long payload) |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 3308 | { |
Kristian Høgsberg | e364cf4 | 2007-02-16 17:34:49 -0500 | [diff] [blame] | 3309 | struct iso_context *ctx = container_of(base, struct iso_context, base); |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 3310 | unsigned long flags; |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3311 | int ret = -ENOSYS; |
Kristian Høgsberg | e364cf4 | 2007-02-16 17:34:49 -0500 | [diff] [blame] | 3312 | |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 3313 | spin_lock_irqsave(&ctx->context.ohci->lock, flags); |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3314 | switch (base->type) { |
| 3315 | case FW_ISO_CONTEXT_TRANSMIT: |
| 3316 | ret = queue_iso_transmit(ctx, packet, buffer, payload); |
| 3317 | break; |
| 3318 | case FW_ISO_CONTEXT_RECEIVE: |
| 3319 | ret = queue_iso_packet_per_buffer(ctx, packet, buffer, payload); |
| 3320 | break; |
| 3321 | case FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL: |
| 3322 | ret = queue_iso_buffer_fill(ctx, packet, buffer, payload); |
| 3323 | break; |
| 3324 | } |
David Moore | fe5ca63 | 2008-01-06 17:21:41 -0500 | [diff] [blame] | 3325 | spin_unlock_irqrestore(&ctx->context.ohci->lock, flags); |
| 3326 | |
Stefan Richter | 2dbd7d7 | 2008-12-14 21:45:45 +0100 | [diff] [blame] | 3327 | return ret; |
Kristian Høgsberg | 295e3fe | 2007-02-16 17:34:40 -0500 | [diff] [blame] | 3328 | } |
| 3329 | |
Clemens Ladisch | 13882a8 | 2011-05-02 09:33:56 +0200 | [diff] [blame] | 3330 | static void ohci_flush_queue_iso(struct fw_iso_context *base) |
| 3331 | { |
| 3332 | struct context *ctx = |
| 3333 | &container_of(base, struct iso_context, base)->context; |
| 3334 | |
| 3335 | reg_write(ctx->ohci, CONTROL_SET(ctx->regs), CONTEXT_WAKE); |
Clemens Ladisch | 13882a8 | 2011-05-02 09:33:56 +0200 | [diff] [blame] | 3336 | } |
| 3337 | |
Stefan Richter | 21ebcd1 | 2007-01-14 15:29:07 +0100 | [diff] [blame] | 3338 | static const struct fw_card_driver ohci_driver = { |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3339 | .enable = ohci_enable, |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 3340 | .read_phy_reg = ohci_read_phy_reg, |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3341 | .update_phy_reg = ohci_update_phy_reg, |
| 3342 | .set_config_rom = ohci_set_config_rom, |
| 3343 | .send_request = ohci_send_request, |
| 3344 | .send_response = ohci_send_response, |
Kristian Høgsberg | 730c32f | 2007-02-06 14:49:32 -0500 | [diff] [blame] | 3345 | .cancel_packet = ohci_cancel_packet, |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3346 | .enable_phys_dma = ohci_enable_phys_dma, |
Stefan Richter | 0fcff4e | 2010-06-12 20:35:52 +0200 | [diff] [blame] | 3347 | .read_csr = ohci_read_csr, |
| 3348 | .write_csr = ohci_write_csr, |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3349 | |
| 3350 | .allocate_iso_context = ohci_allocate_iso_context, |
| 3351 | .free_iso_context = ohci_free_iso_context, |
Stefan Richter | 872e330 | 2010-07-29 18:19:22 +0200 | [diff] [blame] | 3352 | .set_iso_channels = ohci_set_iso_channels, |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3353 | .queue_iso = ohci_queue_iso, |
Clemens Ladisch | 13882a8 | 2011-05-02 09:33:56 +0200 | [diff] [blame] | 3354 | .flush_queue_iso = ohci_flush_queue_iso, |
Kristian Høgsberg | 69cdb72 | 2007-02-16 17:34:41 -0500 | [diff] [blame] | 3355 | .start_iso = ohci_start_iso, |
Kristian Høgsberg | b829566 | 2007-02-16 17:34:42 -0500 | [diff] [blame] | 3356 | .stop_iso = ohci_stop_iso, |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3357 | }; |
| 3358 | |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3359 | #ifdef CONFIG_PPC_PMAC |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3360 | static void pmac_ohci_on(struct pci_dev *dev) |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3361 | { |
| 3362 | if (machine_is(powermac)) { |
| 3363 | struct device_node *ofn = pci_device_to_OF_node(dev); |
| 3364 | |
| 3365 | if (ofn) { |
| 3366 | pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 1); |
| 3367 | pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 1); |
| 3368 | } |
| 3369 | } |
| 3370 | } |
| 3371 | |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3372 | static void pmac_ohci_off(struct pci_dev *dev) |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3373 | { |
| 3374 | if (machine_is(powermac)) { |
| 3375 | struct device_node *ofn = pci_device_to_OF_node(dev); |
| 3376 | |
| 3377 | if (ofn) { |
| 3378 | pmac_call_feature(PMAC_FTR_1394_ENABLE, ofn, 0, 0); |
| 3379 | pmac_call_feature(PMAC_FTR_1394_CABLE_POWER, ofn, 0, 0); |
| 3380 | } |
| 3381 | } |
| 3382 | } |
| 3383 | #else |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3384 | static inline void pmac_ohci_on(struct pci_dev *dev) {} |
| 3385 | static inline void pmac_ohci_off(struct pci_dev *dev) {} |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3386 | #endif /* CONFIG_PPC_PMAC */ |
| 3387 | |
Stefan Richter | 53dca51 | 2008-12-14 21:47:04 +0100 | [diff] [blame] | 3388 | static int __devinit pci_probe(struct pci_dev *dev, |
| 3389 | const struct pci_device_id *ent) |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3390 | { |
| 3391 | struct fw_ohci *ohci; |
Stefan Richter | aa0170f | 2010-10-17 14:09:12 +0200 | [diff] [blame] | 3392 | u32 bus_options, max_receive, link_speed, version; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3393 | u64 guid; |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3394 | int i, err; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3395 | size_t size; |
| 3396 | |
Stefan Richter | 7f7e3711 | 2011-07-10 00:23:03 +0200 | [diff] [blame] | 3397 | if (dev->vendor == PCI_VENDOR_ID_PINNACLE_SYSTEMS) { |
| 3398 | dev_err(&dev->dev, "Pinnacle MovieBoard is not yet supported\n"); |
| 3399 | return -ENOSYS; |
| 3400 | } |
| 3401 | |
Kristian Høgsberg | 2d826cc | 2007-05-09 19:23:14 -0400 | [diff] [blame] | 3402 | ohci = kzalloc(sizeof(*ohci), GFP_KERNEL); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3403 | if (ohci == NULL) { |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3404 | err = -ENOMEM; |
| 3405 | goto fail; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3406 | } |
| 3407 | |
| 3408 | fw_card_initialize(&ohci->card, &ohci_driver, &dev->dev); |
| 3409 | |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3410 | pmac_ohci_on(dev); |
Stefan Richter | 130d549 | 2008-03-24 20:55:28 +0100 | [diff] [blame] | 3411 | |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3412 | err = pci_enable_device(dev); |
| 3413 | if (err) { |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3414 | fw_error("Failed to enable OHCI hardware\n"); |
Stefan Richter | bd7dee6 | 2008-02-24 18:59:55 +0100 | [diff] [blame] | 3415 | goto fail_free; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3416 | } |
| 3417 | |
| 3418 | pci_set_master(dev); |
| 3419 | pci_write_config_dword(dev, OHCI1394_PCI_HCI_Control, 0); |
| 3420 | pci_set_drvdata(dev, ohci); |
| 3421 | |
| 3422 | spin_lock_init(&ohci->lock); |
Stefan Richter | 02d37be | 2010-07-08 16:09:06 +0200 | [diff] [blame] | 3423 | mutex_init(&ohci->phy_reg_mutex); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3424 | |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 3425 | INIT_WORK(&ohci->bus_reset_work, bus_reset_work); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3426 | |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3427 | err = pci_request_region(dev, 0, ohci_driver_name); |
| 3428 | if (err) { |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3429 | fw_error("MMIO resource unavailable\n"); |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3430 | goto fail_disable; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3431 | } |
| 3432 | |
| 3433 | ohci->registers = pci_iomap(dev, 0, OHCI1394_REGISTER_SIZE); |
| 3434 | if (ohci->registers == NULL) { |
| 3435 | fw_error("Failed to remap registers\n"); |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3436 | err = -ENXIO; |
| 3437 | goto fail_iomem; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3438 | } |
| 3439 | |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 3440 | for (i = 0; i < ARRAY_SIZE(ohci_quirks); i++) |
Stefan Richter | 9993e0f | 2010-12-07 20:32:40 +0100 | [diff] [blame] | 3441 | if ((ohci_quirks[i].vendor == dev->vendor) && |
| 3442 | (ohci_quirks[i].device == (unsigned short)PCI_ANY_ID || |
| 3443 | ohci_quirks[i].device == dev->device) && |
| 3444 | (ohci_quirks[i].revision == (unsigned short)PCI_ANY_ID || |
| 3445 | ohci_quirks[i].revision >= dev->revision)) { |
Stefan Richter | 4a63559 | 2010-02-21 17:58:01 +0100 | [diff] [blame] | 3446 | ohci->quirks = ohci_quirks[i].flags; |
| 3447 | break; |
| 3448 | } |
Stefan Richter | 3e9cc2f | 2010-02-21 17:58:29 +0100 | [diff] [blame] | 3449 | if (param_quirks) |
| 3450 | ohci->quirks = param_quirks; |
Clemens Ladisch | b677532 | 2010-01-20 09:58:02 +0100 | [diff] [blame] | 3451 | |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3452 | /* |
| 3453 | * Because dma_alloc_coherent() allocates at least one page, |
| 3454 | * we save space by using a common buffer for the AR request/ |
| 3455 | * response descriptors and the self IDs buffer. |
| 3456 | */ |
| 3457 | BUILD_BUG_ON(AR_BUFFERS * sizeof(struct descriptor) > PAGE_SIZE/4); |
| 3458 | BUILD_BUG_ON(SELF_ID_BUF_SIZE > PAGE_SIZE/2); |
| 3459 | ohci->misc_buffer = dma_alloc_coherent(ohci->card.device, |
| 3460 | PAGE_SIZE, |
| 3461 | &ohci->misc_buffer_bus, |
| 3462 | GFP_KERNEL); |
| 3463 | if (!ohci->misc_buffer) { |
| 3464 | err = -ENOMEM; |
| 3465 | goto fail_iounmap; |
| 3466 | } |
| 3467 | |
| 3468 | err = ar_context_init(&ohci->ar_request_ctx, ohci, 0, |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 3469 | OHCI1394_AsReqRcvContextControlSet); |
| 3470 | if (err < 0) |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3471 | goto fail_misc_buf; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3472 | |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3473 | err = ar_context_init(&ohci->ar_response_ctx, ohci, PAGE_SIZE/4, |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 3474 | OHCI1394_AsRspRcvContextControlSet); |
| 3475 | if (err < 0) |
| 3476 | goto fail_arreq_ctx; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3477 | |
Clemens Ladisch | c088ab30 | 2010-11-30 08:24:01 +0100 | [diff] [blame] | 3478 | err = context_init(&ohci->at_request_ctx, ohci, |
| 3479 | OHCI1394_AsReqTrContextControlSet, handle_at_packet); |
| 3480 | if (err < 0) |
| 3481 | goto fail_arrsp_ctx; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3482 | |
Clemens Ladisch | c088ab30 | 2010-11-30 08:24:01 +0100 | [diff] [blame] | 3483 | err = context_init(&ohci->at_response_ctx, ohci, |
| 3484 | OHCI1394_AsRspTrContextControlSet, handle_at_packet); |
| 3485 | if (err < 0) |
| 3486 | goto fail_atreq_ctx; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3487 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3488 | reg_write(ohci, OHCI1394_IsoRecvIntMaskSet, ~0); |
Stefan Richter | 4817ed2 | 2008-12-21 16:39:46 +0100 | [diff] [blame] | 3489 | ohci->ir_context_channels = ~0ULL; |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 3490 | ohci->ir_context_support = reg_read(ohci, OHCI1394_IsoRecvIntMaskSet); |
Stefan Richter | 4802f16 | 2010-02-21 17:58:52 +0100 | [diff] [blame] | 3491 | reg_write(ohci, OHCI1394_IsoRecvIntMaskClear, ~0); |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 3492 | ohci->ir_context_mask = ohci->ir_context_support; |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3493 | ohci->n_ir = hweight32(ohci->ir_context_mask); |
| 3494 | size = sizeof(struct iso_context) * ohci->n_ir; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3495 | ohci->ir_context_list = kzalloc(size, GFP_KERNEL); |
| 3496 | |
Stefan Richter | 4802f16 | 2010-02-21 17:58:52 +0100 | [diff] [blame] | 3497 | reg_write(ohci, OHCI1394_IsoXmitIntMaskSet, ~0); |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 3498 | ohci->it_context_support = reg_read(ohci, OHCI1394_IsoXmitIntMaskSet); |
Stefan Richter | 4802f16 | 2010-02-21 17:58:52 +0100 | [diff] [blame] | 3499 | reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, ~0); |
Clemens Ladisch | f117a3e | 2011-01-10 17:21:35 +0100 | [diff] [blame] | 3500 | ohci->it_context_mask = ohci->it_context_support; |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3501 | ohci->n_it = hweight32(ohci->it_context_mask); |
| 3502 | size = sizeof(struct iso_context) * ohci->n_it; |
Stefan Richter | 4802f16 | 2010-02-21 17:58:52 +0100 | [diff] [blame] | 3503 | ohci->it_context_list = kzalloc(size, GFP_KERNEL); |
| 3504 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3505 | if (ohci->it_context_list == NULL || ohci->ir_context_list == NULL) { |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3506 | err = -ENOMEM; |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3507 | goto fail_contexts; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3508 | } |
| 3509 | |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3510 | ohci->self_id_cpu = ohci->misc_buffer + PAGE_SIZE/2; |
| 3511 | ohci->self_id_bus = ohci->misc_buffer_bus + PAGE_SIZE/2; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3512 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3513 | bus_options = reg_read(ohci, OHCI1394_BusOptions); |
| 3514 | max_receive = (bus_options >> 12) & 0xf; |
| 3515 | link_speed = bus_options & 0x7; |
| 3516 | guid = ((u64) reg_read(ohci, OHCI1394_GUIDHi) << 32) | |
| 3517 | reg_read(ohci, OHCI1394_GUIDLo); |
| 3518 | |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3519 | err = fw_card_add(&ohci->card, max_receive, link_speed, guid); |
Stefan Richter | e1eff7a | 2009-02-03 17:55:19 +0100 | [diff] [blame] | 3520 | if (err) |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3521 | goto fail_contexts; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3522 | |
Stefan Richter | 6fdb2ee | 2010-02-21 17:59:14 +0100 | [diff] [blame] | 3523 | version = reg_read(ohci, OHCI1394_Version) & 0x00ff00ff; |
| 3524 | fw_notify("Added fw-ohci device %s, OHCI v%x.%x, " |
| 3525 | "%d IR + %d IT contexts, quirks 0x%x\n", |
| 3526 | dev_name(&dev->dev), version >> 16, version & 0xff, |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3527 | ohci->n_ir, ohci->n_it, ohci->quirks); |
Stefan Richter | e1eff7a | 2009-02-03 17:55:19 +0100 | [diff] [blame] | 3528 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3529 | return 0; |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3530 | |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3531 | fail_contexts: |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3532 | kfree(ohci->ir_context_list); |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3533 | kfree(ohci->it_context_list); |
| 3534 | context_release(&ohci->at_response_ctx); |
Clemens Ladisch | c088ab30 | 2010-11-30 08:24:01 +0100 | [diff] [blame] | 3535 | fail_atreq_ctx: |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3536 | context_release(&ohci->at_request_ctx); |
Clemens Ladisch | c088ab30 | 2010-11-30 08:24:01 +0100 | [diff] [blame] | 3537 | fail_arrsp_ctx: |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3538 | ar_context_release(&ohci->ar_response_ctx); |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 3539 | fail_arreq_ctx: |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3540 | ar_context_release(&ohci->ar_request_ctx); |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3541 | fail_misc_buf: |
| 3542 | dma_free_coherent(ohci->card.device, PAGE_SIZE, |
| 3543 | ohci->misc_buffer, ohci->misc_buffer_bus); |
Clemens Ladisch | 7a39d8b | 2010-11-26 08:57:31 +0100 | [diff] [blame] | 3544 | fail_iounmap: |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3545 | pci_iounmap(dev, ohci->registers); |
| 3546 | fail_iomem: |
| 3547 | pci_release_region(dev, 0); |
| 3548 | fail_disable: |
| 3549 | pci_disable_device(dev); |
Stefan Richter | bd7dee6 | 2008-02-24 18:59:55 +0100 | [diff] [blame] | 3550 | fail_free: |
Oleg Drokin | d838d2c0 | 2011-03-11 04:17:27 +0300 | [diff] [blame] | 3551 | kfree(ohci); |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3552 | pmac_ohci_off(dev); |
Stefan Richter | 7007a07 | 2008-10-26 09:50:31 +0100 | [diff] [blame] | 3553 | fail: |
| 3554 | if (err == -ENOMEM) |
| 3555 | fw_error("Out of memory\n"); |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3556 | |
| 3557 | return err; |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3558 | } |
| 3559 | |
| 3560 | static void pci_remove(struct pci_dev *dev) |
| 3561 | { |
| 3562 | struct fw_ohci *ohci; |
| 3563 | |
| 3564 | ohci = pci_get_drvdata(dev); |
Kristian Høgsberg | e254a4b | 2007-03-07 12:12:38 -0500 | [diff] [blame] | 3565 | reg_write(ohci, OHCI1394_IntMaskClear, ~0); |
| 3566 | flush_writes(ohci); |
Stephan Gatzka | 2d7a36e | 2011-07-25 22:16:24 +0200 | [diff] [blame] | 3567 | cancel_work_sync(&ohci->bus_reset_work); |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3568 | fw_core_remove_card(&ohci->card); |
| 3569 | |
Kristian Høgsberg | c781c06 | 2007-05-07 20:33:32 -0400 | [diff] [blame] | 3570 | /* |
| 3571 | * FIXME: Fail all pending packets here, now that the upper |
| 3572 | * layers can't queue any more. |
| 3573 | */ |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3574 | |
| 3575 | software_reset(ohci); |
| 3576 | free_irq(dev->irq, ohci); |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 3577 | |
| 3578 | if (ohci->next_config_rom && ohci->next_config_rom != ohci->config_rom) |
| 3579 | dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 3580 | ohci->next_config_rom, ohci->next_config_rom_bus); |
| 3581 | if (ohci->config_rom) |
| 3582 | dma_free_coherent(ohci->card.device, CONFIG_ROM_SIZE, |
| 3583 | ohci->config_rom, ohci->config_rom_bus); |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 3584 | ar_context_release(&ohci->ar_request_ctx); |
| 3585 | ar_context_release(&ohci->ar_response_ctx); |
Clemens Ladisch | ec766a7 | 2010-11-30 08:25:17 +0100 | [diff] [blame] | 3586 | dma_free_coherent(ohci->card.device, PAGE_SIZE, |
| 3587 | ohci->misc_buffer, ohci->misc_buffer_bus); |
Jay Fenlason | a55709b | 2008-10-22 15:59:42 -0400 | [diff] [blame] | 3588 | context_release(&ohci->at_request_ctx); |
| 3589 | context_release(&ohci->at_response_ctx); |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3590 | kfree(ohci->it_context_list); |
| 3591 | kfree(ohci->ir_context_list); |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 3592 | pci_disable_msi(dev); |
Kristian Høgsberg | d79406d | 2007-05-09 19:23:15 -0400 | [diff] [blame] | 3593 | pci_iounmap(dev, ohci->registers); |
| 3594 | pci_release_region(dev, 0); |
| 3595 | pci_disable_device(dev); |
Oleg Drokin | d838d2c0 | 2011-03-11 04:17:27 +0300 | [diff] [blame] | 3596 | kfree(ohci); |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3597 | pmac_ohci_off(dev); |
Stefan Richter | ea8d006 | 2008-03-01 02:42:56 +0100 | [diff] [blame] | 3598 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3599 | fw_notify("Removed fw-ohci device.\n"); |
| 3600 | } |
| 3601 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3602 | #ifdef CONFIG_PM |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3603 | static int pci_suspend(struct pci_dev *dev, pm_message_t state) |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3604 | { |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3605 | struct fw_ohci *ohci = pci_get_drvdata(dev); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3606 | int err; |
| 3607 | |
| 3608 | software_reset(ohci); |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3609 | free_irq(dev->irq, ohci); |
Clemens Ladisch | 262444e | 2010-06-05 12:31:25 +0200 | [diff] [blame] | 3610 | pci_disable_msi(dev); |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3611 | err = pci_save_state(dev); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3612 | if (err) { |
Stefan Richter | 8a8cea2 | 2007-06-09 19:26:22 +0200 | [diff] [blame] | 3613 | fw_error("pci_save_state failed\n"); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3614 | return err; |
| 3615 | } |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3616 | err = pci_set_power_state(dev, pci_choose_state(dev, state)); |
Stefan Richter | 5511142 | 2007-09-06 09:50:30 +0200 | [diff] [blame] | 3617 | if (err) |
| 3618 | fw_error("pci_set_power_state failed with %d\n", err); |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3619 | pmac_ohci_off(dev); |
Stefan Richter | ea8d006 | 2008-03-01 02:42:56 +0100 | [diff] [blame] | 3620 | |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3621 | return 0; |
| 3622 | } |
| 3623 | |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3624 | static int pci_resume(struct pci_dev *dev) |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3625 | { |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3626 | struct fw_ohci *ohci = pci_get_drvdata(dev); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3627 | int err; |
| 3628 | |
Stefan Richter | 5da3dac | 2010-04-02 14:05:02 +0200 | [diff] [blame] | 3629 | pmac_ohci_on(dev); |
Stefan Richter | 2ed0f18 | 2008-03-01 12:35:29 +0100 | [diff] [blame] | 3630 | pci_set_power_state(dev, PCI_D0); |
| 3631 | pci_restore_state(dev); |
| 3632 | err = pci_enable_device(dev); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3633 | if (err) { |
Stefan Richter | 8a8cea2 | 2007-06-09 19:26:22 +0200 | [diff] [blame] | 3634 | fw_error("pci_enable_device failed\n"); |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3635 | return err; |
| 3636 | } |
| 3637 | |
Maxim Levitsky | 8662b6b | 2010-11-29 04:09:49 +0200 | [diff] [blame] | 3638 | /* Some systems don't setup GUID register on resume from ram */ |
| 3639 | if (!reg_read(ohci, OHCI1394_GUIDLo) && |
| 3640 | !reg_read(ohci, OHCI1394_GUIDHi)) { |
| 3641 | reg_write(ohci, OHCI1394_GUIDLo, (u32)ohci->card.guid); |
| 3642 | reg_write(ohci, OHCI1394_GUIDHi, (u32)(ohci->card.guid >> 32)); |
| 3643 | } |
| 3644 | |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3645 | err = ohci_enable(&ohci->card, NULL, 0); |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3646 | if (err) |
| 3647 | return err; |
| 3648 | |
| 3649 | ohci_resume_iso_dma(ohci); |
Stefan Richter | 693a50b | 2011-01-01 15:17:05 +0100 | [diff] [blame] | 3650 | |
Maxim Levitsky | dd23736 | 2010-11-29 04:09:50 +0200 | [diff] [blame] | 3651 | return 0; |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3652 | } |
| 3653 | #endif |
| 3654 | |
Németh Márton | a67483d | 2010-01-10 13:14:26 +0100 | [diff] [blame] | 3655 | static const struct pci_device_id pci_table[] = { |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3656 | { PCI_DEVICE_CLASS(PCI_CLASS_SERIAL_FIREWIRE_OHCI, ~0) }, |
| 3657 | { } |
| 3658 | }; |
| 3659 | |
| 3660 | MODULE_DEVICE_TABLE(pci, pci_table); |
| 3661 | |
| 3662 | static struct pci_driver fw_ohci_pci_driver = { |
| 3663 | .name = ohci_driver_name, |
| 3664 | .id_table = pci_table, |
| 3665 | .probe = pci_probe, |
| 3666 | .remove = pci_remove, |
Kristian Høgsberg | 2aef469 | 2007-05-30 19:06:35 -0400 | [diff] [blame] | 3667 | #ifdef CONFIG_PM |
| 3668 | .resume = pci_resume, |
| 3669 | .suspend = pci_suspend, |
| 3670 | #endif |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3671 | }; |
| 3672 | |
| 3673 | MODULE_AUTHOR("Kristian Hoegsberg <krh@bitplanet.net>"); |
| 3674 | MODULE_DESCRIPTION("Driver for PCI OHCI IEEE1394 controllers"); |
| 3675 | MODULE_LICENSE("GPL"); |
| 3676 | |
Olaf Hering | 1e4c7b0 | 2007-05-05 23:17:13 +0200 | [diff] [blame] | 3677 | /* Provide a module alias so root-on-sbp2 initrds don't break. */ |
| 3678 | #ifndef CONFIG_IEEE1394_OHCI1394_MODULE |
| 3679 | MODULE_ALIAS("ohci1394"); |
| 3680 | #endif |
| 3681 | |
Kristian Høgsberg | ed56891 | 2006-12-19 19:58:35 -0500 | [diff] [blame] | 3682 | static int __init fw_ohci_init(void) |
| 3683 | { |
| 3684 | return pci_register_driver(&fw_ohci_pci_driver); |
| 3685 | } |
| 3686 | |
| 3687 | static void __exit fw_ohci_cleanup(void) |
| 3688 | { |
| 3689 | pci_unregister_driver(&fw_ohci_pci_driver); |
| 3690 | } |
| 3691 | |
| 3692 | module_init(fw_ohci_init); |
| 3693 | module_exit(fw_ohci_cleanup); |