diff options
| -rw-r--r-- | arch/arm/mach-shmobile/clock-sh7372.c | 5 | ||||
| -rw-r--r-- | arch/arm/mach-shmobile/include/mach/sh7372.h | 4 | ||||
| -rw-r--r-- | arch/arm/mach-shmobile/setup-sh7372.c | 146 |
3 files changed, 154 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/clock-sh7372.c b/arch/arm/mach-shmobile/clock-sh7372.c index dc8c899aa5eb..5309544957b7 100644 --- a/arch/arm/mach-shmobile/clock-sh7372.c +++ b/arch/arm/mach-shmobile/clock-sh7372.c | |||
| @@ -509,7 +509,7 @@ enum { MSTP001, | |||
| 509 | MSTP118, MSTP117, MSTP116, MSTP113, | 509 | MSTP118, MSTP117, MSTP116, MSTP113, |
| 510 | MSTP106, MSTP101, MSTP100, | 510 | MSTP106, MSTP101, MSTP100, |
| 511 | MSTP223, | 511 | MSTP223, |
| 512 | MSTP218, MSTP217, MSTP216, | 512 | MSTP214, MSTP218, MSTP217, MSTP216, |
| 513 | MSTP207, MSTP206, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200, | 513 | MSTP207, MSTP206, MSTP204, MSTP203, MSTP202, MSTP201, MSTP200, |
| 514 | MSTP328, MSTP323, MSTP322, MSTP314, MSTP313, MSTP312, | 514 | MSTP328, MSTP323, MSTP322, MSTP314, MSTP313, MSTP312, |
| 515 | MSTP423, MSTP415, MSTP413, MSTP411, MSTP410, MSTP406, MSTP403, MSTP400, | 515 | MSTP423, MSTP415, MSTP413, MSTP411, MSTP410, MSTP406, MSTP403, MSTP400, |
| @@ -538,6 +538,7 @@ static struct clk mstp_clks[MSTP_NR] = { | |||
| 538 | [MSTP218] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 18, 0), /* DMAC1 */ | 538 | [MSTP218] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 18, 0), /* DMAC1 */ |
| 539 | [MSTP217] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 17, 0), /* DMAC2 */ | 539 | [MSTP217] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 17, 0), /* DMAC2 */ |
| 540 | [MSTP216] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 16, 0), /* DMAC3 */ | 540 | [MSTP216] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 16, 0), /* DMAC3 */ |
| 541 | [MSTP214] = MSTP(&div4_clks[DIV4_HP], SMSTPCR2, 14, 0), /* USBDMAC */ | ||
| 541 | [MSTP207] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 7, 0), /* SCIFA5 */ | 542 | [MSTP207] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 7, 0), /* SCIFA5 */ |
| 542 | [MSTP206] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 6, 0), /* SCIFB */ | 543 | [MSTP206] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 6, 0), /* SCIFB */ |
| 543 | [MSTP204] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 4, 0), /* SCIFA0 */ | 544 | [MSTP204] = MSTP(&div6_clks[DIV6_SUB], SMSTPCR2, 4, 0), /* SCIFA0 */ |
| @@ -629,6 +630,8 @@ static struct clk_lookup lookups[] = { | |||
| 629 | CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP218]), /* DMAC1 */ | 630 | CLKDEV_DEV_ID("sh-dma-engine.0", &mstp_clks[MSTP218]), /* DMAC1 */ |
| 630 | CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP217]), /* DMAC2 */ | 631 | CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[MSTP217]), /* DMAC2 */ |
| 631 | CLKDEV_DEV_ID("sh-dma-engine.2", &mstp_clks[MSTP216]), /* DMAC3 */ | 632 | CLKDEV_DEV_ID("sh-dma-engine.2", &mstp_clks[MSTP216]), /* DMAC3 */ |
| 633 | CLKDEV_DEV_ID("sh-dma-engine.3", &mstp_clks[MSTP214]), /* USB-DMAC0 */ | ||
| 634 | CLKDEV_DEV_ID("sh-dma-engine.4", &mstp_clks[MSTP214]), /* USB-DMAC1 */ | ||
| 632 | CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP207]), /* SCIFA5 */ | 635 | CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP207]), /* SCIFA5 */ |
| 633 | CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP206]), /* SCIFB */ | 636 | CLKDEV_DEV_ID("sh-sci.6", &mstp_clks[MSTP206]), /* SCIFB */ |
| 634 | CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]), /* SCIFA0 */ | 637 | CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP204]), /* SCIFA0 */ |
diff --git a/arch/arm/mach-shmobile/include/mach/sh7372.h b/arch/arm/mach-shmobile/include/mach/sh7372.h index ce595cee86cd..24e63a85e669 100644 --- a/arch/arm/mach-shmobile/include/mach/sh7372.h +++ b/arch/arm/mach-shmobile/include/mach/sh7372.h | |||
| @@ -459,6 +459,10 @@ enum { | |||
| 459 | SHDMA_SLAVE_SDHI2_TX, | 459 | SHDMA_SLAVE_SDHI2_TX, |
| 460 | SHDMA_SLAVE_MMCIF_RX, | 460 | SHDMA_SLAVE_MMCIF_RX, |
| 461 | SHDMA_SLAVE_MMCIF_TX, | 461 | SHDMA_SLAVE_MMCIF_TX, |
| 462 | SHDMA_SLAVE_USB0_TX, | ||
| 463 | SHDMA_SLAVE_USB0_RX, | ||
| 464 | SHDMA_SLAVE_USB1_TX, | ||
| 465 | SHDMA_SLAVE_USB1_RX, | ||
| 462 | }; | 466 | }; |
| 463 | 467 | ||
| 464 | extern struct clk sh7372_extal1_clk; | 468 | extern struct clk sh7372_extal1_clk; |
diff --git a/arch/arm/mach-shmobile/setup-sh7372.c b/arch/arm/mach-shmobile/setup-sh7372.c index d17d0d2ba5eb..2d9b1b1a2538 100644 --- a/arch/arm/mach-shmobile/setup-sh7372.c +++ b/arch/arm/mach-shmobile/setup-sh7372.c | |||
| @@ -602,6 +602,150 @@ static struct platform_device dma2_device = { | |||
| 602 | }, | 602 | }, |
| 603 | }; | 603 | }; |
| 604 | 604 | ||
| 605 | /* | ||
| 606 | * USB-DMAC | ||
| 607 | */ | ||
| 608 | |||
| 609 | unsigned int usbts_shift[] = {3, 4, 5}; | ||
| 610 | |||
| 611 | enum { | ||
| 612 | XMIT_SZ_8BYTE = 0, | ||
| 613 | XMIT_SZ_16BYTE = 1, | ||
| 614 | XMIT_SZ_32BYTE = 2, | ||
| 615 | }; | ||
| 616 | |||
| 617 | #define USBTS_INDEX2VAL(i) (((i) & 3) << 6) | ||
| 618 | |||
| 619 | static const struct sh_dmae_channel sh7372_usb_dmae_channels[] = { | ||
| 620 | { | ||
| 621 | .offset = 0, | ||
| 622 | }, { | ||
| 623 | .offset = 0x20, | ||
| 624 | }, | ||
| 625 | }; | ||
| 626 | |||
| 627 | /* USB DMAC0 */ | ||
| 628 | static const struct sh_dmae_slave_config sh7372_usb_dmae0_slaves[] = { | ||
| 629 | { | ||
| 630 | .slave_id = SHDMA_SLAVE_USB0_TX, | ||
| 631 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 632 | }, { | ||
| 633 | .slave_id = SHDMA_SLAVE_USB0_RX, | ||
| 634 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 635 | }, | ||
| 636 | }; | ||
| 637 | |||
| 638 | static struct sh_dmae_pdata usb_dma0_platform_data = { | ||
| 639 | .slave = sh7372_usb_dmae0_slaves, | ||
| 640 | .slave_num = ARRAY_SIZE(sh7372_usb_dmae0_slaves), | ||
| 641 | .channel = sh7372_usb_dmae_channels, | ||
| 642 | .channel_num = ARRAY_SIZE(sh7372_usb_dmae_channels), | ||
| 643 | .ts_low_shift = 6, | ||
| 644 | .ts_low_mask = 0xc0, | ||
| 645 | .ts_high_shift = 0, | ||
| 646 | .ts_high_mask = 0, | ||
| 647 | .ts_shift = usbts_shift, | ||
| 648 | .ts_shift_num = ARRAY_SIZE(usbts_shift), | ||
| 649 | .dmaor_init = DMAOR_DME, | ||
| 650 | .chcr_offset = 0x14, | ||
| 651 | .chcr_ie_bit = 1 << 5, | ||
| 652 | .dmaor_is_32bit = 1, | ||
| 653 | .needs_tend_set = 1, | ||
| 654 | .no_dmars = 1, | ||
| 655 | }; | ||
| 656 | |||
| 657 | static struct resource sh7372_usb_dmae0_resources[] = { | ||
| 658 | { | ||
| 659 | /* Channel registers and DMAOR */ | ||
| 660 | .start = 0xe68a0020, | ||
| 661 | .end = 0xe68a0064 - 1, | ||
| 662 | .flags = IORESOURCE_MEM, | ||
| 663 | }, | ||
| 664 | { | ||
| 665 | /* VCR/SWR/DMICR */ | ||
| 666 | .start = 0xe68a0000, | ||
| 667 | .end = 0xe68a0014 - 1, | ||
| 668 | .flags = IORESOURCE_MEM, | ||
| 669 | }, | ||
| 670 | { | ||
| 671 | /* IRQ for channels */ | ||
| 672 | .start = evt2irq(0x0a00), | ||
| 673 | .end = evt2irq(0x0a00), | ||
| 674 | .flags = IORESOURCE_IRQ, | ||
| 675 | }, | ||
| 676 | }; | ||
| 677 | |||
| 678 | static struct platform_device usb_dma0_device = { | ||
| 679 | .name = "sh-dma-engine", | ||
| 680 | .id = 3, | ||
| 681 | .resource = sh7372_usb_dmae0_resources, | ||
| 682 | .num_resources = ARRAY_SIZE(sh7372_usb_dmae0_resources), | ||
| 683 | .dev = { | ||
| 684 | .platform_data = &usb_dma0_platform_data, | ||
| 685 | }, | ||
| 686 | }; | ||
| 687 | |||
| 688 | /* USB DMAC1 */ | ||
| 689 | static const struct sh_dmae_slave_config sh7372_usb_dmae1_slaves[] = { | ||
| 690 | { | ||
| 691 | .slave_id = SHDMA_SLAVE_USB1_TX, | ||
| 692 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 693 | }, { | ||
| 694 | .slave_id = SHDMA_SLAVE_USB1_RX, | ||
| 695 | .chcr = USBTS_INDEX2VAL(XMIT_SZ_8BYTE), | ||
| 696 | }, | ||
| 697 | }; | ||
| 698 | |||
| 699 | static struct sh_dmae_pdata usb_dma1_platform_data = { | ||
| 700 | .slave = sh7372_usb_dmae1_slaves, | ||
| 701 | .slave_num = ARRAY_SIZE(sh7372_usb_dmae1_slaves), | ||
| 702 | .channel = sh7372_usb_dmae_channels, | ||
| 703 | .channel_num = ARRAY_SIZE(sh7372_usb_dmae_channels), | ||
| 704 | .ts_low_shift = 6, | ||
| 705 | .ts_low_mask = 0xc0, | ||
| 706 | .ts_high_shift = 0, | ||
| 707 | .ts_high_mask = 0, | ||
| 708 | .ts_shift = usbts_shift, | ||
| 709 | .ts_shift_num = ARRAY_SIZE(usbts_shift), | ||
| 710 | .dmaor_init = DMAOR_DME, | ||
| 711 | .chcr_offset = 0x14, | ||
| 712 | .chcr_ie_bit = 1 << 5, | ||
| 713 | .dmaor_is_32bit = 1, | ||
| 714 | .needs_tend_set = 1, | ||
| 715 | .no_dmars = 1, | ||
| 716 | }; | ||
| 717 | |||
| 718 | static struct resource sh7372_usb_dmae1_resources[] = { | ||
| 719 | { | ||
| 720 | /* Channel registers and DMAOR */ | ||
| 721 | .start = 0xe68c0020, | ||
| 722 | .end = 0xe68c0064 - 1, | ||
| 723 | .flags = IORESOURCE_MEM, | ||
| 724 | }, | ||
| 725 | { | ||
| 726 | /* VCR/SWR/DMICR */ | ||
| 727 | .start = 0xe68c0000, | ||
| 728 | .end = 0xe68c0014 - 1, | ||
| 729 | .flags = IORESOURCE_MEM, | ||
| 730 | }, | ||
| 731 | { | ||
| 732 | /* IRQ for channels */ | ||
| 733 | .start = evt2irq(0x1d00), | ||
| 734 | .end = evt2irq(0x1d00), | ||
| 735 | .flags = IORESOURCE_IRQ, | ||
| 736 | }, | ||
| 737 | }; | ||
| 738 | |||
| 739 | static struct platform_device usb_dma1_device = { | ||
| 740 | .name = "sh-dma-engine", | ||
| 741 | .id = 4, | ||
| 742 | .resource = sh7372_usb_dmae1_resources, | ||
| 743 | .num_resources = ARRAY_SIZE(sh7372_usb_dmae1_resources), | ||
| 744 | .dev = { | ||
| 745 | .platform_data = &usb_dma1_platform_data, | ||
| 746 | }, | ||
| 747 | }; | ||
| 748 | |||
| 605 | /* VPU */ | 749 | /* VPU */ |
| 606 | static struct uio_info vpu_platform_data = { | 750 | static struct uio_info vpu_platform_data = { |
| 607 | .name = "VPU5HG", | 751 | .name = "VPU5HG", |
| @@ -829,6 +973,8 @@ static struct platform_device *sh7372_late_devices[] __initdata = { | |||
| 829 | &dma0_device, | 973 | &dma0_device, |
| 830 | &dma1_device, | 974 | &dma1_device, |
| 831 | &dma2_device, | 975 | &dma2_device, |
| 976 | &usb_dma0_device, | ||
| 977 | &usb_dma1_device, | ||
| 832 | &vpu_device, | 978 | &vpu_device, |
| 833 | &veu0_device, | 979 | &veu0_device, |
| 834 | &veu1_device, | 980 | &veu1_device, |
