axonram.c 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. /*
  2. * (C) Copyright IBM Deutschland Entwicklung GmbH 2006
  3. *
  4. * Author: Maxim Shchetynin <maxim@de.ibm.com>
  5. *
  6. * Axon DDR2 device driver.
  7. * It registers one block device per Axon's DDR2 memory bank found on a system.
  8. * Block devices are called axonram?, their major and minor numbers are
  9. * available in /proc/devices, /proc/partitions or in /sys/block/axonram?/dev.
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of the GNU General Public License as published by
  13. * the Free Software Foundation; either version 2, or (at your option)
  14. * any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  24. */
  25. #include <linux/bio.h>
  26. #include <linux/blkdev.h>
  27. #include <linux/buffer_head.h>
  28. #include <linux/device.h>
  29. #include <linux/errno.h>
  30. #include <linux/fs.h>
  31. #include <linux/genhd.h>
  32. #include <linux/interrupt.h>
  33. #include <linux/io.h>
  34. #include <linux/ioport.h>
  35. #include <linux/irq.h>
  36. #include <linux/irqreturn.h>
  37. #include <linux/kernel.h>
  38. #include <linux/mm.h>
  39. #include <linux/mod_devicetable.h>
  40. #include <linux/module.h>
  41. #include <linux/slab.h>
  42. #include <linux/string.h>
  43. #include <linux/types.h>
  44. #include <linux/of_device.h>
  45. #include <linux/of_platform.h>
  46. #include <asm/page.h>
  47. #include <asm/prom.h>
  48. #define AXON_RAM_MODULE_NAME "axonram"
  49. #define AXON_RAM_DEVICE_NAME "axonram"
  50. #define AXON_RAM_MINORS_PER_DISK 16
  51. #define AXON_RAM_BLOCK_SHIFT PAGE_SHIFT
  52. #define AXON_RAM_BLOCK_SIZE 1 << AXON_RAM_BLOCK_SHIFT
  53. #define AXON_RAM_SECTOR_SHIFT 9
  54. #define AXON_RAM_SECTOR_SIZE 1 << AXON_RAM_SECTOR_SHIFT
  55. #define AXON_RAM_IRQ_FLAGS IRQF_SHARED | IRQF_TRIGGER_RISING
  56. static int azfs_major, azfs_minor;
  57. struct axon_ram_bank {
  58. struct platform_device *device;
  59. struct gendisk *disk;
  60. unsigned int irq_id;
  61. unsigned long ph_addr;
  62. unsigned long io_addr;
  63. unsigned long size;
  64. unsigned long ecc_counter;
  65. };
  66. static ssize_t
  67. axon_ram_sysfs_ecc(struct device *dev, struct device_attribute *attr, char *buf)
  68. {
  69. struct platform_device *device = to_platform_device(dev);
  70. struct axon_ram_bank *bank = device->dev.platform_data;
  71. BUG_ON(!bank);
  72. return sprintf(buf, "%ld\n", bank->ecc_counter);
  73. }
  74. static DEVICE_ATTR(ecc, S_IRUGO, axon_ram_sysfs_ecc, NULL);
  75. /**
  76. * axon_ram_irq_handler - interrupt handler for Axon RAM ECC
  77. * @irq: interrupt ID
  78. * @dev: pointer to of_device
  79. */
  80. static irqreturn_t
  81. axon_ram_irq_handler(int irq, void *dev)
  82. {
  83. struct platform_device *device = dev;
  84. struct axon_ram_bank *bank = device->dev.platform_data;
  85. BUG_ON(!bank);
  86. dev_err(&device->dev, "Correctable memory error occurred\n");
  87. bank->ecc_counter++;
  88. return IRQ_HANDLED;
  89. }
  90. /**
  91. * axon_ram_make_request - make_request() method for block device
  92. * @queue, @bio: see blk_queue_make_request()
  93. */
  94. static int
  95. axon_ram_make_request(struct request_queue *queue, struct bio *bio)
  96. {
  97. struct axon_ram_bank *bank = bio->bi_bdev->bd_disk->private_data;
  98. unsigned long phys_mem, phys_end;
  99. void *user_mem;
  100. struct bio_vec *vec;
  101. unsigned int transfered;
  102. unsigned short idx;
  103. int rc = 0;
  104. phys_mem = bank->io_addr + (bio->bi_sector << AXON_RAM_SECTOR_SHIFT);
  105. phys_end = bank->io_addr + bank->size;
  106. transfered = 0;
  107. bio_for_each_segment(vec, bio, idx) {
  108. if (unlikely(phys_mem + vec->bv_len > phys_end)) {
  109. bio_io_error(bio);
  110. rc = -ERANGE;
  111. break;
  112. }
  113. user_mem = page_address(vec->bv_page) + vec->bv_offset;
  114. if (bio_data_dir(bio) == READ)
  115. memcpy(user_mem, (void *) phys_mem, vec->bv_len);
  116. else
  117. memcpy((void *) phys_mem, user_mem, vec->bv_len);
  118. phys_mem += vec->bv_len;
  119. transfered += vec->bv_len;
  120. }
  121. bio_endio(bio, 0);
  122. return rc;
  123. }
  124. /**
  125. * axon_ram_direct_access - direct_access() method for block device
  126. * @device, @sector, @data: see block_device_operations method
  127. */
  128. static int
  129. axon_ram_direct_access(struct block_device *device, sector_t sector,
  130. void **kaddr, unsigned long *pfn)
  131. {
  132. struct axon_ram_bank *bank = device->bd_disk->private_data;
  133. loff_t offset;
  134. offset = sector;
  135. if (device->bd_part != NULL)
  136. offset += device->bd_part->start_sect;
  137. offset <<= AXON_RAM_SECTOR_SHIFT;
  138. if (offset >= bank->size) {
  139. dev_err(&bank->device->dev, "Access outside of address space\n");
  140. return -ERANGE;
  141. }
  142. *kaddr = (void *)(bank->ph_addr + offset);
  143. *pfn = virt_to_phys(kaddr) >> PAGE_SHIFT;
  144. return 0;
  145. }
  146. static const struct block_device_operations axon_ram_devops = {
  147. .owner = THIS_MODULE,
  148. .direct_access = axon_ram_direct_access
  149. };
  150. /**
  151. * axon_ram_probe - probe() method for platform driver
  152. * @device: see platform_driver method
  153. */
  154. static int axon_ram_probe(struct platform_device *device)
  155. {
  156. static int axon_ram_bank_id = -1;
  157. struct axon_ram_bank *bank;
  158. struct resource resource;
  159. int rc = 0;
  160. axon_ram_bank_id++;
  161. dev_info(&device->dev, "Found memory controller on %s\n",
  162. device->dev.of_node->full_name);
  163. bank = kzalloc(sizeof(struct axon_ram_bank), GFP_KERNEL);
  164. if (bank == NULL) {
  165. dev_err(&device->dev, "Out of memory\n");
  166. rc = -ENOMEM;
  167. goto failed;
  168. }
  169. device->dev.platform_data = bank;
  170. bank->device = device;
  171. if (of_address_to_resource(device->dev.of_node, 0, &resource) != 0) {
  172. dev_err(&device->dev, "Cannot access device tree\n");
  173. rc = -EFAULT;
  174. goto failed;
  175. }
  176. bank->size = resource.end - resource.start + 1;
  177. if (bank->size == 0) {
  178. dev_err(&device->dev, "No DDR2 memory found for %s%d\n",
  179. AXON_RAM_DEVICE_NAME, axon_ram_bank_id);
  180. rc = -ENODEV;
  181. goto failed;
  182. }
  183. dev_info(&device->dev, "Register DDR2 memory device %s%d with %luMB\n",
  184. AXON_RAM_DEVICE_NAME, axon_ram_bank_id, bank->size >> 20);
  185. bank->ph_addr = resource.start;
  186. bank->io_addr = (unsigned long) ioremap_prot(
  187. bank->ph_addr, bank->size, _PAGE_NO_CACHE);
  188. if (bank->io_addr == 0) {
  189. dev_err(&device->dev, "ioremap() failed\n");
  190. rc = -EFAULT;
  191. goto failed;
  192. }
  193. bank->disk = alloc_disk(AXON_RAM_MINORS_PER_DISK);
  194. if (bank->disk == NULL) {
  195. dev_err(&device->dev, "Cannot register disk\n");
  196. rc = -EFAULT;
  197. goto failed;
  198. }
  199. bank->disk->major = azfs_major;
  200. bank->disk->first_minor = azfs_minor;
  201. bank->disk->fops = &axon_ram_devops;
  202. bank->disk->private_data = bank;
  203. bank->disk->driverfs_dev = &device->dev;
  204. sprintf(bank->disk->disk_name, "%s%d",
  205. AXON_RAM_DEVICE_NAME, axon_ram_bank_id);
  206. bank->disk->queue = blk_alloc_queue(GFP_KERNEL);
  207. if (bank->disk->queue == NULL) {
  208. dev_err(&device->dev, "Cannot register disk queue\n");
  209. rc = -EFAULT;
  210. goto failed;
  211. }
  212. set_capacity(bank->disk, bank->size >> AXON_RAM_SECTOR_SHIFT);
  213. blk_queue_make_request(bank->disk->queue, axon_ram_make_request);
  214. blk_queue_logical_block_size(bank->disk->queue, AXON_RAM_SECTOR_SIZE);
  215. add_disk(bank->disk);
  216. bank->irq_id = irq_of_parse_and_map(device->dev.of_node, 0);
  217. if (bank->irq_id == NO_IRQ) {
  218. dev_err(&device->dev, "Cannot access ECC interrupt ID\n");
  219. rc = -EFAULT;
  220. goto failed;
  221. }
  222. rc = request_irq(bank->irq_id, axon_ram_irq_handler,
  223. AXON_RAM_IRQ_FLAGS, bank->disk->disk_name, device);
  224. if (rc != 0) {
  225. dev_err(&device->dev, "Cannot register ECC interrupt handler\n");
  226. bank->irq_id = NO_IRQ;
  227. rc = -EFAULT;
  228. goto failed;
  229. }
  230. rc = device_create_file(&device->dev, &dev_attr_ecc);
  231. if (rc != 0) {
  232. dev_err(&device->dev, "Cannot create sysfs file\n");
  233. rc = -EFAULT;
  234. goto failed;
  235. }
  236. azfs_minor += bank->disk->minors;
  237. return 0;
  238. failed:
  239. if (bank != NULL) {
  240. if (bank->irq_id != NO_IRQ)
  241. free_irq(bank->irq_id, device);
  242. if (bank->disk != NULL) {
  243. if (bank->disk->major > 0)
  244. unregister_blkdev(bank->disk->major,
  245. bank->disk->disk_name);
  246. del_gendisk(bank->disk);
  247. }
  248. device->dev.platform_data = NULL;
  249. if (bank->io_addr != 0)
  250. iounmap((void __iomem *) bank->io_addr);
  251. kfree(bank);
  252. }
  253. return rc;
  254. }
  255. /**
  256. * axon_ram_remove - remove() method for platform driver
  257. * @device: see of_platform_driver method
  258. */
  259. static int
  260. axon_ram_remove(struct platform_device *device)
  261. {
  262. struct axon_ram_bank *bank = device->dev.platform_data;
  263. BUG_ON(!bank || !bank->disk);
  264. device_remove_file(&device->dev, &dev_attr_ecc);
  265. free_irq(bank->irq_id, device);
  266. del_gendisk(bank->disk);
  267. iounmap((void __iomem *) bank->io_addr);
  268. kfree(bank);
  269. return 0;
  270. }
  271. static struct of_device_id axon_ram_device_id[] = {
  272. {
  273. .type = "dma-memory"
  274. },
  275. {}
  276. };
  277. static struct platform_driver axon_ram_driver = {
  278. .probe = axon_ram_probe,
  279. .remove = axon_ram_remove,
  280. .driver = {
  281. .name = AXON_RAM_MODULE_NAME,
  282. .owner = THIS_MODULE,
  283. .of_match_table = axon_ram_device_id,
  284. },
  285. };
  286. /**
  287. * axon_ram_init
  288. */
  289. static int __init
  290. axon_ram_init(void)
  291. {
  292. azfs_major = register_blkdev(azfs_major, AXON_RAM_DEVICE_NAME);
  293. if (azfs_major < 0) {
  294. printk(KERN_ERR "%s cannot become block device major number\n",
  295. AXON_RAM_MODULE_NAME);
  296. return -EFAULT;
  297. }
  298. azfs_minor = 0;
  299. return platform_driver_register(&axon_ram_driver);
  300. }
  301. /**
  302. * axon_ram_exit
  303. */
  304. static void __exit
  305. axon_ram_exit(void)
  306. {
  307. platform_driver_unregister(&axon_ram_driver);
  308. unregister_blkdev(azfs_major, AXON_RAM_DEVICE_NAME);
  309. }
  310. module_init(axon_ram_init);
  311. module_exit(axon_ram_exit);
  312. MODULE_LICENSE("GPL");
  313. MODULE_AUTHOR("Maxim Shchetynin <maxim@de.ibm.com>");
  314. MODULE_DESCRIPTION("Axon DDR2 RAM device driver for IBM Cell BE");