diff options
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/of/address.c | 110 | ||||
| -rw-r--r-- | drivers/of/platform.c | 65 |
2 files changed, 169 insertions, 6 deletions
diff --git a/drivers/of/address.c b/drivers/of/address.c index cb4242a69cd5..d244b2859aac 100644 --- a/drivers/of/address.c +++ b/drivers/of/address.c | |||
| @@ -721,3 +721,113 @@ void __iomem *of_iomap(struct device_node *np, int index) | |||
| 721 | return ioremap(res.start, resource_size(&res)); | 721 | return ioremap(res.start, resource_size(&res)); |
| 722 | } | 722 | } |
| 723 | EXPORT_SYMBOL(of_iomap); | 723 | EXPORT_SYMBOL(of_iomap); |
| 724 | |||
| 725 | /** | ||
| 726 | * of_dma_get_range - Get DMA range info | ||
| 727 | * @np: device node to get DMA range info | ||
| 728 | * @dma_addr: pointer to store initial DMA address of DMA range | ||
| 729 | * @paddr: pointer to store initial CPU address of DMA range | ||
| 730 | * @size: pointer to store size of DMA range | ||
| 731 | * | ||
| 732 | * Look in bottom up direction for the first "dma-ranges" property | ||
| 733 | * and parse it. | ||
| 734 | * dma-ranges format: | ||
| 735 | * DMA addr (dma_addr) : naddr cells | ||
| 736 | * CPU addr (phys_addr_t) : pna cells | ||
| 737 | * size : nsize cells | ||
| 738 | * | ||
| 739 | * It returns -ENODEV if "dma-ranges" property was not found | ||
| 740 | * for this device in DT. | ||
| 741 | */ | ||
| 742 | int of_dma_get_range(struct device_node *np, u64 *dma_addr, u64 *paddr, u64 *size) | ||
| 743 | { | ||
| 744 | struct device_node *node = of_node_get(np); | ||
| 745 | const __be32 *ranges = NULL; | ||
| 746 | int len, naddr, nsize, pna; | ||
| 747 | int ret = 0; | ||
| 748 | u64 dmaaddr; | ||
| 749 | |||
| 750 | if (!node) | ||
| 751 | return -EINVAL; | ||
| 752 | |||
| 753 | while (1) { | ||
| 754 | naddr = of_n_addr_cells(node); | ||
| 755 | nsize = of_n_size_cells(node); | ||
| 756 | node = of_get_next_parent(node); | ||
| 757 | if (!node) | ||
| 758 | break; | ||
| 759 | |||
| 760 | ranges = of_get_property(node, "dma-ranges", &len); | ||
| 761 | |||
| 762 | /* Ignore empty ranges, they imply no translation required */ | ||
| 763 | if (ranges && len > 0) | ||
| 764 | break; | ||
| 765 | |||
| 766 | /* | ||
| 767 | * At least empty ranges has to be defined for parent node if | ||
| 768 | * DMA is supported | ||
| 769 | */ | ||
| 770 | if (!ranges) | ||
| 771 | break; | ||
| 772 | } | ||
| 773 | |||
| 774 | if (!ranges) { | ||
| 775 | pr_debug("%s: no dma-ranges found for node(%s)\n", | ||
| 776 | __func__, np->full_name); | ||
| 777 | ret = -ENODEV; | ||
| 778 | goto out; | ||
| 779 | } | ||
| 780 | |||
| 781 | len /= sizeof(u32); | ||
| 782 | |||
| 783 | pna = of_n_addr_cells(node); | ||
| 784 | |||
| 785 | /* dma-ranges format: | ||
| 786 | * DMA addr : naddr cells | ||
| 787 | * CPU addr : pna cells | ||
| 788 | * size : nsize cells | ||
| 789 | */ | ||
| 790 | dmaaddr = of_read_number(ranges, naddr); | ||
| 791 | *paddr = of_translate_dma_address(np, ranges); | ||
| 792 | if (*paddr == OF_BAD_ADDR) { | ||
| 793 | pr_err("%s: translation of DMA address(%pad) to CPU address failed node(%s)\n", | ||
| 794 | __func__, dma_addr, np->full_name); | ||
| 795 | ret = -EINVAL; | ||
| 796 | goto out; | ||
| 797 | } | ||
| 798 | *dma_addr = dmaaddr; | ||
| 799 | |||
| 800 | *size = of_read_number(ranges + naddr + pna, nsize); | ||
| 801 | |||
| 802 | pr_debug("dma_addr(%llx) cpu_addr(%llx) size(%llx)\n", | ||
| 803 | *dma_addr, *paddr, *size); | ||
| 804 | |||
| 805 | out: | ||
| 806 | of_node_put(node); | ||
| 807 | |||
| 808 | return ret; | ||
| 809 | } | ||
| 810 | EXPORT_SYMBOL_GPL(of_dma_get_range); | ||
| 811 | |||
| 812 | /** | ||
| 813 | * of_dma_is_coherent - Check if device is coherent | ||
| 814 | * @np: device node | ||
| 815 | * | ||
| 816 | * It returns true if "dma-coherent" property was found | ||
| 817 | * for this device in DT. | ||
| 818 | */ | ||
| 819 | bool of_dma_is_coherent(struct device_node *np) | ||
| 820 | { | ||
| 821 | struct device_node *node = of_node_get(np); | ||
| 822 | |||
| 823 | while (node) { | ||
| 824 | if (of_property_read_bool(node, "dma-coherent")) { | ||
| 825 | of_node_put(node); | ||
| 826 | return true; | ||
| 827 | } | ||
| 828 | node = of_get_next_parent(node); | ||
| 829 | } | ||
| 830 | of_node_put(node); | ||
| 831 | return false; | ||
| 832 | } | ||
| 833 | EXPORT_SYMBOL_GPL(of_dma_is_coherent); \ No newline at end of file | ||
diff --git a/drivers/of/platform.c b/drivers/of/platform.c index bd47fbc53dc9..4e91583a3908 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c | |||
| @@ -189,6 +189,64 @@ struct platform_device *of_device_alloc(struct device_node *np, | |||
| 189 | EXPORT_SYMBOL(of_device_alloc); | 189 | EXPORT_SYMBOL(of_device_alloc); |
| 190 | 190 | ||
| 191 | /** | 191 | /** |
| 192 | * of_dma_configure - Setup DMA configuration | ||
| 193 | * @dev: Device to apply DMA configuration | ||
| 194 | * | ||
| 195 | * Try to get devices's DMA configuration from DT and update it | ||
| 196 | * accordingly. | ||
| 197 | * | ||
| 198 | * In case if platform code need to use own special DMA configuration,it | ||
| 199 | * can use Platform bus notifier and handle BUS_NOTIFY_ADD_DEVICE event | ||
| 200 | * to fix up DMA configuration. | ||
| 201 | */ | ||
| 202 | static void of_dma_configure(struct platform_device *pdev) | ||
| 203 | { | ||
| 204 | u64 dma_addr, paddr, size; | ||
| 205 | int ret; | ||
| 206 | struct device *dev = &pdev->dev; | ||
| 207 | |||
| 208 | #if defined(CONFIG_MICROBLAZE) | ||
| 209 | pdev->archdata.dma_mask = 0xffffffffUL; | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* | ||
| 213 | * Set default dma-mask to 32 bit. Drivers are expected to setup | ||
| 214 | * the correct supported dma_mask. | ||
| 215 | */ | ||
| 216 | dev->coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 217 | |||
| 218 | /* | ||
| 219 | * Set it to coherent_dma_mask by default if the architecture | ||
| 220 | * code has not set it. | ||
| 221 | */ | ||
| 222 | if (!dev->dma_mask) | ||
| 223 | dev->dma_mask = &dev->coherent_dma_mask; | ||
| 224 | |||
| 225 | /* | ||
| 226 | * if dma-coherent property exist, call arch hook to setup | ||
| 227 | * dma coherent operations. | ||
| 228 | */ | ||
| 229 | if (of_dma_is_coherent(dev->of_node)) { | ||
| 230 | set_arch_dma_coherent_ops(dev); | ||
| 231 | dev_dbg(dev, "device is dma coherent\n"); | ||
| 232 | } | ||
| 233 | |||
| 234 | /* | ||
| 235 | * if dma-ranges property doesn't exist - just return else | ||
| 236 | * setup the dma offset | ||
| 237 | */ | ||
| 238 | ret = of_dma_get_range(dev->of_node, &dma_addr, &paddr, &size); | ||
| 239 | if (ret < 0) { | ||
| 240 | dev_dbg(dev, "no dma range information to setup\n"); | ||
| 241 | return; | ||
| 242 | } | ||
| 243 | |||
| 244 | /* DMA ranges found. Calculate and set dma_pfn_offset */ | ||
| 245 | dev->dma_pfn_offset = PFN_DOWN(paddr - dma_addr); | ||
| 246 | dev_dbg(dev, "dma_pfn_offset(%#08lx)\n", dev->dma_pfn_offset); | ||
| 247 | } | ||
| 248 | |||
| 249 | /** | ||
| 192 | * of_platform_device_create_pdata - Alloc, initialize and register an of_device | 250 | * of_platform_device_create_pdata - Alloc, initialize and register an of_device |
| 193 | * @np: pointer to node to create device for | 251 | * @np: pointer to node to create device for |
| 194 | * @bus_id: name to assign device | 252 | * @bus_id: name to assign device |
| @@ -213,12 +271,7 @@ static struct platform_device *of_platform_device_create_pdata( | |||
| 213 | if (!dev) | 271 | if (!dev) |
| 214 | return NULL; | 272 | return NULL; |
| 215 | 273 | ||
| 216 | #if defined(CONFIG_MICROBLAZE) | 274 | of_dma_configure(dev); |
| 217 | dev->archdata.dma_mask = 0xffffffffUL; | ||
| 218 | #endif | ||
| 219 | dev->dev.coherent_dma_mask = DMA_BIT_MASK(32); | ||
| 220 | if (!dev->dev.dma_mask) | ||
| 221 | dev->dev.dma_mask = &dev->dev.coherent_dma_mask; | ||
| 222 | dev->dev.bus = &platform_bus_type; | 275 | dev->dev.bus = &platform_bus_type; |
| 223 | dev->dev.platform_data = platform_data; | 276 | dev->dev.platform_data = platform_data; |
| 224 | 277 | ||
