diff options
Diffstat (limited to 'drivers/block/ps3vram.c')
| -rw-r--r-- | drivers/block/ps3vram.c | 168 |
1 files changed, 88 insertions, 80 deletions
diff --git a/drivers/block/ps3vram.c b/drivers/block/ps3vram.c index 8eddef373a91..095f97e60665 100644 --- a/drivers/block/ps3vram.c +++ b/drivers/block/ps3vram.c | |||
| @@ -14,8 +14,10 @@ | |||
| 14 | #include <linux/seq_file.h> | 14 | #include <linux/seq_file.h> |
| 15 | 15 | ||
| 16 | #include <asm/firmware.h> | 16 | #include <asm/firmware.h> |
| 17 | #include <asm/iommu.h> | ||
| 17 | #include <asm/lv1call.h> | 18 | #include <asm/lv1call.h> |
| 18 | #include <asm/ps3.h> | 19 | #include <asm/ps3.h> |
| 20 | #include <asm/ps3gpu.h> | ||
| 19 | 21 | ||
| 20 | 22 | ||
| 21 | #define DEVICE_NAME "ps3vram" | 23 | #define DEVICE_NAME "ps3vram" |
| @@ -45,8 +47,6 @@ | |||
| 45 | #define NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN 0x0000030c | 47 | #define NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN 0x0000030c |
| 46 | #define NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY 0x00000104 | 48 | #define NV_MEMORY_TO_MEMORY_FORMAT_NOTIFY 0x00000104 |
| 47 | 49 | ||
| 48 | #define L1GPU_CONTEXT_ATTRIBUTE_FB_BLIT 0x601 | ||
| 49 | |||
| 50 | #define CACHE_PAGE_PRESENT 1 | 50 | #define CACHE_PAGE_PRESENT 1 |
| 51 | #define CACHE_PAGE_DIRTY 2 | 51 | #define CACHE_PAGE_DIRTY 2 |
| 52 | 52 | ||
| @@ -72,8 +72,7 @@ struct ps3vram_priv { | |||
| 72 | u64 memory_handle; | 72 | u64 memory_handle; |
| 73 | u64 context_handle; | 73 | u64 context_handle; |
| 74 | u32 *ctrl; | 74 | u32 *ctrl; |
| 75 | u32 *reports; | 75 | void *reports; |
| 76 | u8 __iomem *ddr_base; | ||
| 77 | u8 *xdr_buf; | 76 | u8 *xdr_buf; |
| 78 | 77 | ||
| 79 | u32 *fifo_base; | 78 | u32 *fifo_base; |
| @@ -81,8 +80,8 @@ struct ps3vram_priv { | |||
| 81 | 80 | ||
| 82 | struct ps3vram_cache cache; | 81 | struct ps3vram_cache cache; |
| 83 | 82 | ||
| 84 | /* Used to serialize cache/DMA operations */ | 83 | spinlock_t lock; /* protecting list of bios */ |
| 85 | struct mutex lock; | 84 | struct bio_list list; |
| 86 | }; | 85 | }; |
| 87 | 86 | ||
| 88 | 87 | ||
| @@ -103,15 +102,15 @@ static char *size = "256M"; | |||
| 103 | module_param(size, charp, 0); | 102 | module_param(size, charp, 0); |
| 104 | MODULE_PARM_DESC(size, "memory size"); | 103 | MODULE_PARM_DESC(size, "memory size"); |
| 105 | 104 | ||
| 106 | static u32 *ps3vram_get_notifier(u32 *reports, int notifier) | 105 | static u32 *ps3vram_get_notifier(void *reports, int notifier) |
| 107 | { | 106 | { |
| 108 | return (void *)reports + DMA_NOTIFIER_OFFSET_BASE + | 107 | return reports + DMA_NOTIFIER_OFFSET_BASE + |
| 109 | DMA_NOTIFIER_SIZE * notifier; | 108 | DMA_NOTIFIER_SIZE * notifier; |
| 110 | } | 109 | } |
| 111 | 110 | ||
| 112 | static void ps3vram_notifier_reset(struct ps3_system_bus_device *dev) | 111 | static void ps3vram_notifier_reset(struct ps3_system_bus_device *dev) |
| 113 | { | 112 | { |
| 114 | struct ps3vram_priv *priv = dev->core.driver_data; | 113 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 115 | u32 *notify = ps3vram_get_notifier(priv->reports, NOTIFIER); | 114 | u32 *notify = ps3vram_get_notifier(priv->reports, NOTIFIER); |
| 116 | int i; | 115 | int i; |
| 117 | 116 | ||
| @@ -122,7 +121,7 @@ static void ps3vram_notifier_reset(struct ps3_system_bus_device *dev) | |||
| 122 | static int ps3vram_notifier_wait(struct ps3_system_bus_device *dev, | 121 | static int ps3vram_notifier_wait(struct ps3_system_bus_device *dev, |
| 123 | unsigned int timeout_ms) | 122 | unsigned int timeout_ms) |
| 124 | { | 123 | { |
| 125 | struct ps3vram_priv *priv = dev->core.driver_data; | 124 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 126 | u32 *notify = ps3vram_get_notifier(priv->reports, NOTIFIER); | 125 | u32 *notify = ps3vram_get_notifier(priv->reports, NOTIFIER); |
| 127 | unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms); | 126 | unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms); |
| 128 | 127 | ||
| @@ -137,7 +136,7 @@ static int ps3vram_notifier_wait(struct ps3_system_bus_device *dev, | |||
| 137 | 136 | ||
| 138 | static void ps3vram_init_ring(struct ps3_system_bus_device *dev) | 137 | static void ps3vram_init_ring(struct ps3_system_bus_device *dev) |
| 139 | { | 138 | { |
| 140 | struct ps3vram_priv *priv = dev->core.driver_data; | 139 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 141 | 140 | ||
| 142 | priv->ctrl[CTRL_PUT] = FIFO_BASE + FIFO_OFFSET; | 141 | priv->ctrl[CTRL_PUT] = FIFO_BASE + FIFO_OFFSET; |
| 143 | priv->ctrl[CTRL_GET] = FIFO_BASE + FIFO_OFFSET; | 142 | priv->ctrl[CTRL_GET] = FIFO_BASE + FIFO_OFFSET; |
| @@ -146,7 +145,7 @@ static void ps3vram_init_ring(struct ps3_system_bus_device *dev) | |||
| 146 | static int ps3vram_wait_ring(struct ps3_system_bus_device *dev, | 145 | static int ps3vram_wait_ring(struct ps3_system_bus_device *dev, |
| 147 | unsigned int timeout_ms) | 146 | unsigned int timeout_ms) |
| 148 | { | 147 | { |
| 149 | struct ps3vram_priv *priv = dev->core.driver_data; | 148 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 150 | unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms); | 149 | unsigned long timeout = jiffies + msecs_to_jiffies(timeout_ms); |
| 151 | 150 | ||
| 152 | do { | 151 | do { |
| @@ -175,7 +174,7 @@ static void ps3vram_begin_ring(struct ps3vram_priv *priv, u32 chan, u32 tag, | |||
| 175 | 174 | ||
| 176 | static void ps3vram_rewind_ring(struct ps3_system_bus_device *dev) | 175 | static void ps3vram_rewind_ring(struct ps3_system_bus_device *dev) |
| 177 | { | 176 | { |
| 178 | struct ps3vram_priv *priv = dev->core.driver_data; | 177 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 179 | int status; | 178 | int status; |
| 180 | 179 | ||
| 181 | ps3vram_out_ring(priv, 0x20000000 | (FIFO_BASE + FIFO_OFFSET)); | 180 | ps3vram_out_ring(priv, 0x20000000 | (FIFO_BASE + FIFO_OFFSET)); |
| @@ -183,20 +182,17 @@ static void ps3vram_rewind_ring(struct ps3_system_bus_device *dev) | |||
| 183 | priv->ctrl[CTRL_PUT] = FIFO_BASE + FIFO_OFFSET; | 182 | priv->ctrl[CTRL_PUT] = FIFO_BASE + FIFO_OFFSET; |
| 184 | 183 | ||
| 185 | /* asking the HV for a blit will kick the FIFO */ | 184 | /* asking the HV for a blit will kick the FIFO */ |
| 186 | status = lv1_gpu_context_attribute(priv->context_handle, | 185 | status = lv1_gpu_fb_blit(priv->context_handle, 0, 0, 0, 0); |
| 187 | L1GPU_CONTEXT_ATTRIBUTE_FB_BLIT, 0, | ||
| 188 | 0, 0, 0); | ||
| 189 | if (status) | 186 | if (status) |
| 190 | dev_err(&dev->core, | 187 | dev_err(&dev->core, "%s: lv1_gpu_fb_blit failed %d\n", |
| 191 | "%s: lv1_gpu_context_attribute failed %d\n", __func__, | 188 | __func__, status); |
| 192 | status); | ||
| 193 | 189 | ||
| 194 | priv->fifo_ptr = priv->fifo_base; | 190 | priv->fifo_ptr = priv->fifo_base; |
| 195 | } | 191 | } |
| 196 | 192 | ||
| 197 | static void ps3vram_fire_ring(struct ps3_system_bus_device *dev) | 193 | static void ps3vram_fire_ring(struct ps3_system_bus_device *dev) |
| 198 | { | 194 | { |
| 199 | struct ps3vram_priv *priv = dev->core.driver_data; | 195 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 200 | int status; | 196 | int status; |
| 201 | 197 | ||
| 202 | mutex_lock(&ps3_gpu_mutex); | 198 | mutex_lock(&ps3_gpu_mutex); |
| @@ -205,13 +201,10 @@ static void ps3vram_fire_ring(struct ps3_system_bus_device *dev) | |||
| 205 | (priv->fifo_ptr - priv->fifo_base) * sizeof(u32); | 201 | (priv->fifo_ptr - priv->fifo_base) * sizeof(u32); |
| 206 | 202 | ||
| 207 | /* asking the HV for a blit will kick the FIFO */ | 203 | /* asking the HV for a blit will kick the FIFO */ |
| 208 | status = lv1_gpu_context_attribute(priv->context_handle, | 204 | status = lv1_gpu_fb_blit(priv->context_handle, 0, 0, 0, 0); |
| 209 | L1GPU_CONTEXT_ATTRIBUTE_FB_BLIT, 0, | ||
| 210 | 0, 0, 0); | ||
| 211 | if (status) | 205 | if (status) |
| 212 | dev_err(&dev->core, | 206 | dev_err(&dev->core, "%s: lv1_gpu_fb_blit failed %d\n", |
| 213 | "%s: lv1_gpu_context_attribute failed %d\n", __func__, | 207 | __func__, status); |
| 214 | status); | ||
| 215 | 208 | ||
| 216 | if ((priv->fifo_ptr - priv->fifo_base) * sizeof(u32) > | 209 | if ((priv->fifo_ptr - priv->fifo_base) * sizeof(u32) > |
| 217 | FIFO_SIZE - 1024) { | 210 | FIFO_SIZE - 1024) { |
| @@ -225,7 +218,7 @@ static void ps3vram_fire_ring(struct ps3_system_bus_device *dev) | |||
| 225 | 218 | ||
| 226 | static void ps3vram_bind(struct ps3_system_bus_device *dev) | 219 | static void ps3vram_bind(struct ps3_system_bus_device *dev) |
| 227 | { | 220 | { |
| 228 | struct ps3vram_priv *priv = dev->core.driver_data; | 221 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 229 | 222 | ||
| 230 | ps3vram_begin_ring(priv, UPLOAD_SUBCH, 0, 1); | 223 | ps3vram_begin_ring(priv, UPLOAD_SUBCH, 0, 1); |
| 231 | ps3vram_out_ring(priv, 0x31337303); | 224 | ps3vram_out_ring(priv, 0x31337303); |
| @@ -248,7 +241,7 @@ static int ps3vram_upload(struct ps3_system_bus_device *dev, | |||
| 248 | unsigned int src_offset, unsigned int dst_offset, | 241 | unsigned int src_offset, unsigned int dst_offset, |
| 249 | int len, int count) | 242 | int len, int count) |
| 250 | { | 243 | { |
| 251 | struct ps3vram_priv *priv = dev->core.driver_data; | 244 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 252 | 245 | ||
| 253 | ps3vram_begin_ring(priv, UPLOAD_SUBCH, | 246 | ps3vram_begin_ring(priv, UPLOAD_SUBCH, |
| 254 | NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8); | 247 | NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8); |
| @@ -280,7 +273,7 @@ static int ps3vram_download(struct ps3_system_bus_device *dev, | |||
| 280 | unsigned int src_offset, unsigned int dst_offset, | 273 | unsigned int src_offset, unsigned int dst_offset, |
| 281 | int len, int count) | 274 | int len, int count) |
| 282 | { | 275 | { |
| 283 | struct ps3vram_priv *priv = dev->core.driver_data; | 276 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 284 | 277 | ||
| 285 | ps3vram_begin_ring(priv, DOWNLOAD_SUBCH, | 278 | ps3vram_begin_ring(priv, DOWNLOAD_SUBCH, |
| 286 | NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8); | 279 | NV_MEMORY_TO_MEMORY_FORMAT_OFFSET_IN, 8); |
| @@ -310,7 +303,7 @@ static int ps3vram_download(struct ps3_system_bus_device *dev, | |||
| 310 | 303 | ||
| 311 | static void ps3vram_cache_evict(struct ps3_system_bus_device *dev, int entry) | 304 | static void ps3vram_cache_evict(struct ps3_system_bus_device *dev, int entry) |
| 312 | { | 305 | { |
| 313 | struct ps3vram_priv *priv = dev->core.driver_data; | 306 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 314 | struct ps3vram_cache *cache = &priv->cache; | 307 | struct ps3vram_cache *cache = &priv->cache; |
| 315 | 308 | ||
| 316 | if (!(cache->tags[entry].flags & CACHE_PAGE_DIRTY)) | 309 | if (!(cache->tags[entry].flags & CACHE_PAGE_DIRTY)) |
| @@ -332,7 +325,7 @@ static void ps3vram_cache_evict(struct ps3_system_bus_device *dev, int entry) | |||
| 332 | static void ps3vram_cache_load(struct ps3_system_bus_device *dev, int entry, | 325 | static void ps3vram_cache_load(struct ps3_system_bus_device *dev, int entry, |
| 333 | unsigned int address) | 326 | unsigned int address) |
| 334 | { | 327 | { |
| 335 | struct ps3vram_priv *priv = dev->core.driver_data; | 328 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 336 | struct ps3vram_cache *cache = &priv->cache; | 329 | struct ps3vram_cache *cache = &priv->cache; |
| 337 | 330 | ||
| 338 | dev_dbg(&dev->core, "Fetching %d: 0x%08x\n", entry, address); | 331 | dev_dbg(&dev->core, "Fetching %d: 0x%08x\n", entry, address); |
| @@ -352,7 +345,7 @@ static void ps3vram_cache_load(struct ps3_system_bus_device *dev, int entry, | |||
| 352 | 345 | ||
| 353 | static void ps3vram_cache_flush(struct ps3_system_bus_device *dev) | 346 | static void ps3vram_cache_flush(struct ps3_system_bus_device *dev) |
| 354 | { | 347 | { |
| 355 | struct ps3vram_priv *priv = dev->core.driver_data; | 348 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 356 | struct ps3vram_cache *cache = &priv->cache; | 349 | struct ps3vram_cache *cache = &priv->cache; |
| 357 | int i; | 350 | int i; |
| 358 | 351 | ||
| @@ -366,7 +359,7 @@ static void ps3vram_cache_flush(struct ps3_system_bus_device *dev) | |||
| 366 | static unsigned int ps3vram_cache_match(struct ps3_system_bus_device *dev, | 359 | static unsigned int ps3vram_cache_match(struct ps3_system_bus_device *dev, |
| 367 | loff_t address) | 360 | loff_t address) |
| 368 | { | 361 | { |
| 369 | struct ps3vram_priv *priv = dev->core.driver_data; | 362 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 370 | struct ps3vram_cache *cache = &priv->cache; | 363 | struct ps3vram_cache *cache = &priv->cache; |
| 371 | unsigned int base; | 364 | unsigned int base; |
| 372 | unsigned int offset; | 365 | unsigned int offset; |
| @@ -400,7 +393,7 @@ static unsigned int ps3vram_cache_match(struct ps3_system_bus_device *dev, | |||
| 400 | 393 | ||
| 401 | static int ps3vram_cache_init(struct ps3_system_bus_device *dev) | 394 | static int ps3vram_cache_init(struct ps3_system_bus_device *dev) |
| 402 | { | 395 | { |
| 403 | struct ps3vram_priv *priv = dev->core.driver_data; | 396 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 404 | 397 | ||
| 405 | priv->cache.page_count = CACHE_PAGE_COUNT; | 398 | priv->cache.page_count = CACHE_PAGE_COUNT; |
| 406 | priv->cache.page_size = CACHE_PAGE_SIZE; | 399 | priv->cache.page_size = CACHE_PAGE_SIZE; |
| @@ -419,7 +412,7 @@ static int ps3vram_cache_init(struct ps3_system_bus_device *dev) | |||
| 419 | 412 | ||
| 420 | static void ps3vram_cache_cleanup(struct ps3_system_bus_device *dev) | 413 | static void ps3vram_cache_cleanup(struct ps3_system_bus_device *dev) |
| 421 | { | 414 | { |
| 422 | struct ps3vram_priv *priv = dev->core.driver_data; | 415 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 423 | 416 | ||
| 424 | ps3vram_cache_flush(dev); | 417 | ps3vram_cache_flush(dev); |
| 425 | kfree(priv->cache.tags); | 418 | kfree(priv->cache.tags); |
| @@ -428,7 +421,7 @@ static void ps3vram_cache_cleanup(struct ps3_system_bus_device *dev) | |||
| 428 | static int ps3vram_read(struct ps3_system_bus_device *dev, loff_t from, | 421 | static int ps3vram_read(struct ps3_system_bus_device *dev, loff_t from, |
| 429 | size_t len, size_t *retlen, u_char *buf) | 422 | size_t len, size_t *retlen, u_char *buf) |
| 430 | { | 423 | { |
| 431 | struct ps3vram_priv *priv = dev->core.driver_data; | 424 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 432 | unsigned int cached, count; | 425 | unsigned int cached, count; |
| 433 | 426 | ||
| 434 | dev_dbg(&dev->core, "%s: from=0x%08x len=0x%zx\n", __func__, | 427 | dev_dbg(&dev->core, "%s: from=0x%08x len=0x%zx\n", __func__, |
| @@ -449,8 +442,6 @@ static int ps3vram_read(struct ps3_system_bus_device *dev, loff_t from, | |||
| 449 | offset = (unsigned int) (from & (priv->cache.page_size - 1)); | 442 | offset = (unsigned int) (from & (priv->cache.page_size - 1)); |
| 450 | avail = priv->cache.page_size - offset; | 443 | avail = priv->cache.page_size - offset; |
| 451 | 444 | ||
| 452 | mutex_lock(&priv->lock); | ||
| 453 | |||
| 454 | entry = ps3vram_cache_match(dev, from); | 445 | entry = ps3vram_cache_match(dev, from); |
| 455 | cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; | 446 | cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; |
| 456 | 447 | ||
| @@ -462,8 +453,6 @@ static int ps3vram_read(struct ps3_system_bus_device *dev, loff_t from, | |||
| 462 | avail = count; | 453 | avail = count; |
| 463 | memcpy(buf, priv->xdr_buf + cached, avail); | 454 | memcpy(buf, priv->xdr_buf + cached, avail); |
| 464 | 455 | ||
| 465 | mutex_unlock(&priv->lock); | ||
| 466 | |||
| 467 | buf += avail; | 456 | buf += avail; |
| 468 | count -= avail; | 457 | count -= avail; |
| 469 | from += avail; | 458 | from += avail; |
| @@ -476,7 +465,7 @@ static int ps3vram_read(struct ps3_system_bus_device *dev, loff_t from, | |||
| 476 | static int ps3vram_write(struct ps3_system_bus_device *dev, loff_t to, | 465 | static int ps3vram_write(struct ps3_system_bus_device *dev, loff_t to, |
| 477 | size_t len, size_t *retlen, const u_char *buf) | 466 | size_t len, size_t *retlen, const u_char *buf) |
| 478 | { | 467 | { |
| 479 | struct ps3vram_priv *priv = dev->core.driver_data; | 468 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 480 | unsigned int cached, count; | 469 | unsigned int cached, count; |
| 481 | 470 | ||
| 482 | if (to >= priv->size) | 471 | if (to >= priv->size) |
| @@ -494,8 +483,6 @@ static int ps3vram_write(struct ps3_system_bus_device *dev, loff_t to, | |||
| 494 | offset = (unsigned int) (to & (priv->cache.page_size - 1)); | 483 | offset = (unsigned int) (to & (priv->cache.page_size - 1)); |
| 495 | avail = priv->cache.page_size - offset; | 484 | avail = priv->cache.page_size - offset; |
| 496 | 485 | ||
| 497 | mutex_lock(&priv->lock); | ||
| 498 | |||
| 499 | entry = ps3vram_cache_match(dev, to); | 486 | entry = ps3vram_cache_match(dev, to); |
| 500 | cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; | 487 | cached = CACHE_OFFSET + entry * priv->cache.page_size + offset; |
| 501 | 488 | ||
| @@ -509,8 +496,6 @@ static int ps3vram_write(struct ps3_system_bus_device *dev, loff_t to, | |||
| 509 | 496 | ||
| 510 | priv->cache.tags[entry].flags |= CACHE_PAGE_DIRTY; | 497 | priv->cache.tags[entry].flags |= CACHE_PAGE_DIRTY; |
| 511 | 498 | ||
| 512 | mutex_unlock(&priv->lock); | ||
| 513 | |||
| 514 | buf += avail; | 499 | buf += avail; |
| 515 | count -= avail; | 500 | count -= avail; |
| 516 | to += avail; | 501 | to += avail; |
| @@ -543,28 +528,26 @@ static const struct file_operations ps3vram_proc_fops = { | |||
| 543 | 528 | ||
| 544 | static void __devinit ps3vram_proc_init(struct ps3_system_bus_device *dev) | 529 | static void __devinit ps3vram_proc_init(struct ps3_system_bus_device *dev) |
| 545 | { | 530 | { |
| 546 | struct ps3vram_priv *priv = dev->core.driver_data; | 531 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 547 | struct proc_dir_entry *pde; | 532 | struct proc_dir_entry *pde; |
| 548 | 533 | ||
| 549 | pde = proc_create(DEVICE_NAME, 0444, NULL, &ps3vram_proc_fops); | 534 | pde = proc_create_data(DEVICE_NAME, 0444, NULL, &ps3vram_proc_fops, |
| 550 | if (!pde) { | 535 | priv); |
| 536 | if (!pde) | ||
| 551 | dev_warn(&dev->core, "failed to create /proc entry\n"); | 537 | dev_warn(&dev->core, "failed to create /proc entry\n"); |
| 552 | return; | ||
| 553 | } | ||
| 554 | pde->data = priv; | ||
| 555 | } | 538 | } |
| 556 | 539 | ||
| 557 | static int ps3vram_make_request(struct request_queue *q, struct bio *bio) | 540 | static struct bio *ps3vram_do_bio(struct ps3_system_bus_device *dev, |
| 541 | struct bio *bio) | ||
| 558 | { | 542 | { |
| 559 | struct ps3_system_bus_device *dev = q->queuedata; | 543 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 560 | int write = bio_data_dir(bio) == WRITE; | 544 | int write = bio_data_dir(bio) == WRITE; |
| 561 | const char *op = write ? "write" : "read"; | 545 | const char *op = write ? "write" : "read"; |
| 562 | loff_t offset = bio->bi_sector << 9; | 546 | loff_t offset = bio->bi_sector << 9; |
| 563 | int error = 0; | 547 | int error = 0; |
| 564 | struct bio_vec *bvec; | 548 | struct bio_vec *bvec; |
| 565 | unsigned int i; | 549 | unsigned int i; |
| 566 | 550 | struct bio *next; | |
| 567 | dev_dbg(&dev->core, "%s\n", __func__); | ||
| 568 | 551 | ||
| 569 | bio_for_each_segment(bvec, bio, i) { | 552 | bio_for_each_segment(bvec, bio, i) { |
| 570 | /* PS3 is ppc64, so we don't handle highmem */ | 553 | /* PS3 is ppc64, so we don't handle highmem */ |
| @@ -585,6 +568,7 @@ static int ps3vram_make_request(struct request_queue *q, struct bio *bio) | |||
| 585 | 568 | ||
| 586 | if (retlen != len) { | 569 | if (retlen != len) { |
| 587 | dev_err(&dev->core, "Short %s\n", op); | 570 | dev_err(&dev->core, "Short %s\n", op); |
| 571 | error = -EIO; | ||
| 588 | goto out; | 572 | goto out; |
| 589 | } | 573 | } |
| 590 | 574 | ||
| @@ -594,7 +578,35 @@ static int ps3vram_make_request(struct request_queue *q, struct bio *bio) | |||
| 594 | dev_dbg(&dev->core, "%s completed\n", op); | 578 | dev_dbg(&dev->core, "%s completed\n", op); |
| 595 | 579 | ||
| 596 | out: | 580 | out: |
| 581 | spin_lock_irq(&priv->lock); | ||
| 582 | bio_list_pop(&priv->list); | ||
| 583 | next = bio_list_peek(&priv->list); | ||
| 584 | spin_unlock_irq(&priv->lock); | ||
| 585 | |||
| 597 | bio_endio(bio, error); | 586 | bio_endio(bio, error); |
| 587 | return next; | ||
| 588 | } | ||
| 589 | |||
| 590 | static int ps3vram_make_request(struct request_queue *q, struct bio *bio) | ||
| 591 | { | ||
| 592 | struct ps3_system_bus_device *dev = q->queuedata; | ||
| 593 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); | ||
| 594 | int busy; | ||
| 595 | |||
| 596 | dev_dbg(&dev->core, "%s\n", __func__); | ||
| 597 | |||
| 598 | spin_lock_irq(&priv->lock); | ||
| 599 | busy = !bio_list_empty(&priv->list); | ||
| 600 | bio_list_add(&priv->list, bio); | ||
| 601 | spin_unlock_irq(&priv->lock); | ||
| 602 | |||
| 603 | if (busy) | ||
| 604 | return 0; | ||
| 605 | |||
| 606 | do { | ||
| 607 | bio = ps3vram_do_bio(dev, bio); | ||
| 608 | } while (bio); | ||
| 609 | |||
| 598 | return 0; | 610 | return 0; |
| 599 | } | 611 | } |
| 600 | 612 | ||
| @@ -604,8 +616,8 @@ static int __devinit ps3vram_probe(struct ps3_system_bus_device *dev) | |||
| 604 | int error, status; | 616 | int error, status; |
| 605 | struct request_queue *queue; | 617 | struct request_queue *queue; |
| 606 | struct gendisk *gendisk; | 618 | struct gendisk *gendisk; |
| 607 | u64 ddr_lpar, ctrl_lpar, info_lpar, reports_lpar, ddr_size, | 619 | u64 ddr_size, ddr_lpar, ctrl_lpar, info_lpar, reports_lpar, |
| 608 | reports_size; | 620 | reports_size, xdr_lpar; |
| 609 | char *rest; | 621 | char *rest; |
| 610 | 622 | ||
| 611 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); | 623 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| @@ -614,10 +626,9 @@ static int __devinit ps3vram_probe(struct ps3_system_bus_device *dev) | |||
| 614 | goto fail; | 626 | goto fail; |
| 615 | } | 627 | } |
| 616 | 628 | ||
| 617 | mutex_init(&priv->lock); | 629 | spin_lock_init(&priv->lock); |
| 618 | dev->core.driver_data = priv; | 630 | bio_list_init(&priv->list); |
| 619 | 631 | ps3_system_bus_set_drvdata(dev, priv); | |
| 620 | priv = dev->core.driver_data; | ||
| 621 | 632 | ||
| 622 | /* Allocate XDR buffer (1MiB aligned) */ | 633 | /* Allocate XDR buffer (1MiB aligned) */ |
| 623 | priv->xdr_buf = (void *)__get_free_pages(GFP_KERNEL, | 634 | priv->xdr_buf = (void *)__get_free_pages(GFP_KERNEL, |
| @@ -636,7 +647,7 @@ static int __devinit ps3vram_probe(struct ps3_system_bus_device *dev) | |||
| 636 | if (ps3_open_hv_device(dev)) { | 647 | if (ps3_open_hv_device(dev)) { |
| 637 | dev_err(&dev->core, "ps3_open_hv_device failed\n"); | 648 | dev_err(&dev->core, "ps3_open_hv_device failed\n"); |
| 638 | error = -EAGAIN; | 649 | error = -EAGAIN; |
| 639 | goto out_close_gpu; | 650 | goto out_free_xdr_buf; |
| 640 | } | 651 | } |
| 641 | 652 | ||
| 642 | /* Request memory */ | 653 | /* Request memory */ |
| @@ -660,7 +671,7 @@ static int __devinit ps3vram_probe(struct ps3_system_bus_device *dev) | |||
| 660 | dev_err(&dev->core, "lv1_gpu_memory_allocate failed %d\n", | 671 | dev_err(&dev->core, "lv1_gpu_memory_allocate failed %d\n", |
| 661 | status); | 672 | status); |
| 662 | error = -ENOMEM; | 673 | error = -ENOMEM; |
| 663 | goto out_free_xdr_buf; | 674 | goto out_close_gpu; |
| 664 | } | 675 | } |
| 665 | 676 | ||
| 666 | /* Request context */ | 677 | /* Request context */ |
| @@ -676,9 +687,11 @@ static int __devinit ps3vram_probe(struct ps3_system_bus_device *dev) | |||
| 676 | } | 687 | } |
| 677 | 688 | ||
| 678 | /* Map XDR buffer to RSX */ | 689 | /* Map XDR buffer to RSX */ |
| 690 | xdr_lpar = ps3_mm_phys_to_lpar(__pa(priv->xdr_buf)); | ||
| 679 | status = lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF, | 691 | status = lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF, |
| 680 | ps3_mm_phys_to_lpar(__pa(priv->xdr_buf)), | 692 | xdr_lpar, XDR_BUF_SIZE, |
| 681 | XDR_BUF_SIZE, 0); | 693 | CBE_IOPTE_PP_W | CBE_IOPTE_PP_R | |
| 694 | CBE_IOPTE_M); | ||
| 682 | if (status) { | 695 | if (status) { |
| 683 | dev_err(&dev->core, "lv1_gpu_context_iomap failed %d\n", | 696 | dev_err(&dev->core, "lv1_gpu_context_iomap failed %d\n", |
| 684 | status); | 697 | status); |
| @@ -686,19 +699,11 @@ static int __devinit ps3vram_probe(struct ps3_system_bus_device *dev) | |||
| 686 | goto out_free_context; | 699 | goto out_free_context; |
| 687 | } | 700 | } |
| 688 | 701 | ||
| 689 | priv->ddr_base = ioremap_flags(ddr_lpar, ddr_size, _PAGE_NO_CACHE); | ||
| 690 | |||
| 691 | if (!priv->ddr_base) { | ||
| 692 | dev_err(&dev->core, "ioremap DDR failed\n"); | ||
| 693 | error = -ENOMEM; | ||
| 694 | goto out_free_context; | ||
| 695 | } | ||
| 696 | |||
| 697 | priv->ctrl = ioremap(ctrl_lpar, 64 * 1024); | 702 | priv->ctrl = ioremap(ctrl_lpar, 64 * 1024); |
| 698 | if (!priv->ctrl) { | 703 | if (!priv->ctrl) { |
| 699 | dev_err(&dev->core, "ioremap CTRL failed\n"); | 704 | dev_err(&dev->core, "ioremap CTRL failed\n"); |
| 700 | error = -ENOMEM; | 705 | error = -ENOMEM; |
| 701 | goto out_unmap_vram; | 706 | goto out_unmap_context; |
| 702 | } | 707 | } |
| 703 | 708 | ||
| 704 | priv->reports = ioremap(reports_lpar, reports_size); | 709 | priv->reports = ioremap(reports_lpar, reports_size); |
| @@ -775,8 +780,9 @@ out_unmap_reports: | |||
| 775 | iounmap(priv->reports); | 780 | iounmap(priv->reports); |
| 776 | out_unmap_ctrl: | 781 | out_unmap_ctrl: |
| 777 | iounmap(priv->ctrl); | 782 | iounmap(priv->ctrl); |
| 778 | out_unmap_vram: | 783 | out_unmap_context: |
| 779 | iounmap(priv->ddr_base); | 784 | lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF, xdr_lpar, |
| 785 | XDR_BUF_SIZE, CBE_IOPTE_M); | ||
| 780 | out_free_context: | 786 | out_free_context: |
| 781 | lv1_gpu_context_free(priv->context_handle); | 787 | lv1_gpu_context_free(priv->context_handle); |
| 782 | out_free_memory: | 788 | out_free_memory: |
| @@ -787,14 +793,14 @@ out_free_xdr_buf: | |||
| 787 | free_pages((unsigned long) priv->xdr_buf, get_order(XDR_BUF_SIZE)); | 793 | free_pages((unsigned long) priv->xdr_buf, get_order(XDR_BUF_SIZE)); |
| 788 | fail_free_priv: | 794 | fail_free_priv: |
| 789 | kfree(priv); | 795 | kfree(priv); |
| 790 | dev->core.driver_data = NULL; | 796 | ps3_system_bus_set_drvdata(dev, NULL); |
| 791 | fail: | 797 | fail: |
| 792 | return error; | 798 | return error; |
| 793 | } | 799 | } |
| 794 | 800 | ||
| 795 | static int ps3vram_remove(struct ps3_system_bus_device *dev) | 801 | static int ps3vram_remove(struct ps3_system_bus_device *dev) |
| 796 | { | 802 | { |
| 797 | struct ps3vram_priv *priv = dev->core.driver_data; | 803 | struct ps3vram_priv *priv = ps3_system_bus_get_drvdata(dev); |
| 798 | 804 | ||
| 799 | del_gendisk(priv->gendisk); | 805 | del_gendisk(priv->gendisk); |
| 800 | put_disk(priv->gendisk); | 806 | put_disk(priv->gendisk); |
| @@ -803,13 +809,15 @@ static int ps3vram_remove(struct ps3_system_bus_device *dev) | |||
| 803 | ps3vram_cache_cleanup(dev); | 809 | ps3vram_cache_cleanup(dev); |
| 804 | iounmap(priv->reports); | 810 | iounmap(priv->reports); |
| 805 | iounmap(priv->ctrl); | 811 | iounmap(priv->ctrl); |
| 806 | iounmap(priv->ddr_base); | 812 | lv1_gpu_context_iomap(priv->context_handle, XDR_IOIF, |
| 813 | ps3_mm_phys_to_lpar(__pa(priv->xdr_buf)), | ||
| 814 | XDR_BUF_SIZE, CBE_IOPTE_M); | ||
| 807 | lv1_gpu_context_free(priv->context_handle); | 815 | lv1_gpu_context_free(priv->context_handle); |
| 808 | lv1_gpu_memory_free(priv->memory_handle); | 816 | lv1_gpu_memory_free(priv->memory_handle); |
| 809 | ps3_close_hv_device(dev); | 817 | ps3_close_hv_device(dev); |
| 810 | free_pages((unsigned long) priv->xdr_buf, get_order(XDR_BUF_SIZE)); | 818 | free_pages((unsigned long) priv->xdr_buf, get_order(XDR_BUF_SIZE)); |
| 811 | kfree(priv); | 819 | kfree(priv); |
| 812 | dev->core.driver_data = NULL; | 820 | ps3_system_bus_set_drvdata(dev, NULL); |
| 813 | return 0; | 821 | return 0; |
| 814 | } | 822 | } |
| 815 | 823 | ||
