Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 |
| 3 | * Marvell Semiconductor <www.marvell.com> |
| 4 | * Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/io.h> |
| 11 | #include <usb.h> |
| 12 | #include "ehci.h" |
Lei Wen | a7efd71 | 2011-10-18 20:11:42 +0530 | [diff] [blame] | 13 | #include <asm/arch/cpu.h> |
Albert ARIBAUD | 805ad7e | 2012-01-15 22:08:40 +0000 | [diff] [blame] | 14 | |
| 15 | #if defined(CONFIG_KIRKWOOD) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 16 | #include <asm/arch/kirkwood.h> |
Albert ARIBAUD | 805ad7e | 2012-01-15 22:08:40 +0000 | [diff] [blame] | 17 | #elif defined(CONFIG_ORION5X) |
| 18 | #include <asm/arch/orion5x.h> |
| 19 | #endif |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 20 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | #define rdl(off) readl(MVUSB0_BASE + (off)) |
| 24 | #define wrl(off, val) writel((val), MVUSB0_BASE + (off)) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 25 | |
| 26 | #define USB_WINDOW_CTRL(i) (0x320 + ((i) << 4)) |
| 27 | #define USB_WINDOW_BASE(i) (0x324 + ((i) << 4)) |
| 28 | #define USB_TARGET_DRAM 0x0 |
| 29 | |
| 30 | /* |
| 31 | * USB 2.0 Bridge Address Decoding registers setup |
| 32 | */ |
| 33 | static void usb_brg_adrdec_setup(void) |
| 34 | { |
| 35 | int i; |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 36 | u32 size, base, attrib; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 37 | |
| 38 | for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) { |
| 39 | |
| 40 | /* Enable DRAM bank */ |
| 41 | switch (i) { |
| 42 | case 0: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 43 | attrib = MVUSB0_CPU_ATTR_DRAM_CS0; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 44 | break; |
| 45 | case 1: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 46 | attrib = MVUSB0_CPU_ATTR_DRAM_CS1; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 47 | break; |
| 48 | case 2: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 49 | attrib = MVUSB0_CPU_ATTR_DRAM_CS2; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 50 | break; |
| 51 | case 3: |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 52 | attrib = MVUSB0_CPU_ATTR_DRAM_CS3; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 53 | break; |
| 54 | default: |
| 55 | /* invalide bank, disable access */ |
| 56 | attrib = 0; |
| 57 | break; |
| 58 | } |
| 59 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 60 | size = gd->bd->bi_dram[i].size; |
| 61 | base = gd->bd->bi_dram[i].start; |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 62 | if ((size) && (attrib)) |
| 63 | wrl(USB_WINDOW_CTRL(i), |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 64 | MVCPU_WIN_CTRL_DATA(size, USB_TARGET_DRAM, |
| 65 | attrib, MVCPU_WIN_ENABLE)); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 66 | else |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 67 | wrl(USB_WINDOW_CTRL(i), MVCPU_WIN_DISABLE); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 68 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 69 | wrl(USB_WINDOW_BASE(i), base); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | |
| 73 | /* |
| 74 | * Create the appropriate control structures to manage |
| 75 | * a new EHCI host controller. |
| 76 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 77 | int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 78 | { |
| 79 | usb_brg_adrdec_setup(); |
| 80 | |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 81 | *hccr = (struct ehci_hccr *)(MVUSB0_BASE + 0x100); |
| 82 | *hcor = (struct ehci_hcor *)((uint32_t) *hccr |
| 83 | + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 84 | |
Albert ARIBAUD | 74d3442 | 2012-01-15 22:08:39 +0000 | [diff] [blame] | 85 | debug("ehci-marvell: init hccr %x and hcor %x hc_length %d\n", |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 86 | (uint32_t)*hccr, (uint32_t)*hcor, |
| 87 | (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase))); |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 88 | |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | /* |
| 93 | * Destroy the appropriate control structures corresponding |
| 94 | * the the EHCI host controller. |
| 95 | */ |
Lucas Stach | 676ae06 | 2012-09-26 00:14:35 +0200 | [diff] [blame] | 96 | int ehci_hcd_stop(int index) |
Prafulla Wadaskar | 1d8937a | 2009-06-29 20:56:43 +0530 | [diff] [blame] | 97 | { |
| 98 | return 0; |
| 99 | } |