axonram.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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 void
  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. phys_mem = bank->io_addr + (bio->bi_sector << AXON_RAM_SECTOR_SHIFT);
  104. phys_end = bank->io_addr + bank->size;
  105. transfered = 0;
  106. bio_for_each_segment(vec, bio, idx) {
  107. if (unlikely(phys_mem + vec->bv_len > phys_end)) {
  108. bio_io_error(bio);
  109. return;
  110. }
  111. user_mem = page_address(vec->bv_page) + vec->bv_offset;
  112. if (bio_data_dir(bio) == READ)
  113. memcpy(user_mem, (void *) phys_mem, vec->bv_len);
  114. else
  115. memcpy((void *) phys_mem, user_mem, vec->bv_len);
  116. phys_mem += vec->bv_len;
  117. transfered += vec->bv_len;
  118. }
  119. bio_endio(bio, 0);
  120. }
  121. /**
  122. * axon_ram_direct_access - direct_access() method for block device
  123. * @device, @sector, @data: see block_device_operations method
  124. */
  125. static int
  126. axon_ram_direct_access(struct block_device *device, sector_t sector,
  127. void **kaddr, unsigned long *pfn)
  128. {
  129. struct axon_ram_bank *bank = device->bd_disk->private_data;
  130. loff_t offset;
  131. offset = sector;
  132. if (device->bd_part != NULL)
  133. offset += device->bd_part->start_sect;
  134. offset <<= AXON_RAM_SECTOR_SHIFT;
  135. if (offset >= bank->size) {
  136. dev_err(&bank->device->dev, "Access outside of address space\n");
  137. return -ERANGE;
  138. }
  139. *kaddr = (void *)(bank->ph_addr + offset);
  140. *pfn = virt_to_phys(kaddr) >> PAGE_SHIFT;
  141. return 0;
  142. }
  143. static const struct block_device_operations axon_ram_devops = {
  144. .owner = THIS_MODULE,
  145. .direct_access = axon_ram_direct_access
  146. };
  147. /**
  148. * axon_ram_probe - probe() method for platform driver
  149. * @device: see platform_driver method
  150. */
  151. static int axon_ram_probe(struct platform_device *device)
  152. {
  153. static int axon_ram_bank_id = -1;
  154. struct axon_ram_bank *bank;
  155. struct resource resource;
  156. int rc = 0;
  157. axon_ram_bank_id++;
  158. dev_info(&device->dev, "Found memory controller on %s\n",
  159. device->dev.of_node->full_name);
  160. bank = kzalloc(sizeof(struct axon_ram_bank), GFP_KERNEL);
  161. if (bank == NULL) {
  162. dev_err(&device->dev, "Out of memory\n");
  163. rc = -ENOMEM;
  164. goto failed;
  165. }
  166. device->dev.platform_data = bank;
  167. bank->device = device;
  168. if (of_address_to_resource(device->dev.of_node, 0, &resource) != 0) {
  169. dev_err(&device->dev, "Cannot access device tree\n");
  170. rc = -EFAULT;
  171. goto failed;
  172. }
  173. bank->size = resource_size(&resource);
  174. if (bank->size == 0) {
  175. dev_err(&device->dev, "No DDR2 memory found for %s%d\n",
  176. AXON_RAM_DEVICE_NAME, axon_ram_bank_id);
  177. rc = -ENODEV;
  178. goto failed;
  179. }
  180. dev_info(&device->dev, "Register DDR2 memory device %s%d with %luMB\n",
  181. AXON_RAM_DEVICE_NAME, axon_ram_bank_id, bank->size >> 20);
  182. bank->ph_addr = resource.start;
  183. bank->io_addr = (unsigned long) ioremap_prot(
  184. bank->ph_addr, bank->size, _PAGE_NO_CACHE);
  185. if (bank->io_addr == 0) {
  186. dev_err(&device->dev, "ioremap() failed\n");
  187. rc = -EFAULT;
  188. goto failed;
  189. }
  190. bank->disk = alloc_disk(AXON_RAM_MINORS_PER_DISK);
  191. if (bank->disk == NULL) {
  192. dev_err(&device->dev, "Cannot register disk\n");
  193. rc = -EFAULT;
  194. goto failed;
  195. }
  196. bank->disk->major = azfs_major;
  197. bank->disk->first_minor = azfs_minor;
  198. bank->disk->fops = &axon_ram_devops;
  199. bank->disk->private_data = bank;
  200. bank->disk->driverfs_dev = &device->dev;
  201. sprintf(bank->disk->disk_name, "%s%d",
  202. AXON_RAM_DEVICE_NAME, axon_ram_bank_id);
  203. bank->disk->queue = blk_alloc_queue(GFP_KERNEL);
  204. if (bank->disk->queue == NULL) {
  205. dev_err(&device->dev, "Cannot register disk queue\n");
  206. rc = -EFAULT;
  207. goto failed;
  208. }
  209. set_capacity(bank->disk, bank->size >> AXON_RAM_SECTOR_SHIFT);
  210. blk_queue_make_request(bank->disk->queue, axon_ram_make_request);
  211. blk_queue_logical_block_size(bank->disk->queue, AXON_RAM_SECTOR_SIZE);
  212. add_disk(bank->disk);
  213. bank->irq_id = irq_of_parse_and_map(device->dev.of_node, 0);
  214. if (bank->irq_id == NO_IRQ) {
  215. dev_err(&device->dev, "Cannot access ECC interrupt ID\n");
  216. rc = -EFAULT;
  217. goto failed;
  218. }
  219. rc = request_irq(bank->irq_id, axon_ram_irq_handler,
  220. AXON_RAM_IRQ_FLAGS, bank->disk->disk_name, device);
  221. if (rc != 0) {
  222. dev_err(&device->dev, "Cannot register ECC interrupt handler\n");
  223. bank->irq_id = NO_IRQ;
  224. rc = -EFAULT;
  225. goto failed;
  226. }
  227. rc = device_create_file(&device->dev, &dev_attr_ecc);
  228. if (rc != 0) {
  229. dev_err(&device->dev, "Cannot create sysfs file\n");
  230. rc = -EFAULT;
  231. goto failed;
  232. }
  233. azfs_minor += bank->disk->minors;
  234. return 0;
  235. failed:
  236. if (bank != NULL) {
  237. if (bank->irq_id != NO_IRQ)
  238. free_irq(bank->irq_id, device);
  239. if (bank->disk != NULL) {
  240. if (bank->disk->major > 0)
  241. unregister_blkdev(bank->disk->major,
  242. bank->disk->disk_name);
  243. del_gendisk(bank->disk);
  244. }
  245. device->dev.platform_data = NULL;
  246. if (bank->io_addr != 0)
  247. iounmap((void __iomem *) bank->io_addr);
  248. kfree(bank);
  249. }
  250. return rc;
  251. }
  252. /**
  253. * axon_ram_remove - remove() method for platform driver
  254. * @device: see of_platform_driver method
  255. */
  256. static int
  257. axon_ram_remove(struct platform_device *device)
  258. {
  259. struct axon_ram_bank *bank = device->dev.platform_data;
  260. BUG_ON(!bank || !bank->disk);
  261. device_remove_file(&device->dev, &dev_attr_ecc);
  262. free_irq(bank->irq_id, device);
  263. del_gendisk(bank->disk);
  264. iounmap((void __iomem *) bank->io_addr);
  265. kfree(bank);
  266. return 0;
  267. }
  268. static struct of_device_id axon_ram_device_id[] = {
  269. {
  270. .type = "dma-memory"
  271. },
  272. {}
  273. };
  274. static struct platform_driver axon_ram_driver = {
  275. .probe = axon_ram_probe,
  276. .remove = axon_ram_remove,
  277. .driver = {
  278. .name = AXON_RAM_MODULE_NAME,
  279. .owner = THIS_MODULE,
  280. .of_match_table = axon_ram_device_id,
  281. },
  282. };
  283. /**
  284. * axon_ram_init
  285. */
  286. static int __init
  287. axon_ram_init(void)
  288. {
  289. azfs_major = register_blkdev(azfs_major, AXON_RAM_DEVICE_NAME);
  290. if (azfs_major < 0) {
  291. printk(KERN_ERR "%s cannot become block device major number\n",
  292. AXON_RAM_MODULE_NAME);
  293. return -EFAULT;
  294. }
  295. azfs_minor = 0;
  296. return platform_driver_register(&axon_ram_driver);
  297. }
  298. /**
  299. * axon_ram_exit
  300. */
  301. static void __exit
  302. axon_ram_exit(void)
  303. {
  304. platform_driver_unregister(&axon_ram_driver);
  305. unregister_blkdev(azfs_major, AXON_RAM_DEVICE_NAME);
  306. }
  307. module_init(axon_ram_init);
  308. module_exit(axon_ram_exit);
  309. MODULE_LICENSE("GPL");
  310. MODULE_AUTHOR("Maxim Shchetynin <maxim@de.ibm.com>");
  311. MODULE_DESCRIPTION("Axon DDR2 RAM device driver for IBM Cell BE");