blob: 50fa01c07989779650264d872bd6954d246222d6 [file] [log] [blame]
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +05301/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +05307 */
8
9#include <common.h>
10#include <asm/io.h>
11#include <usb.h>
12#include "ehci.h"
Stefan Roesefe11ae22015-06-29 14:58:15 +020013#include <linux/mbus.h>
Lei Wena7efd712011-10-18 20:11:42 +053014#include <asm/arch/cpu.h>
Albert ARIBAUD805ad7e2012-01-15 22:08:40 +000015
16#if defined(CONFIG_KIRKWOOD)
Stefan Roese3dc23f72014-10-22 12:13:06 +020017#include <asm/arch/soc.h>
Albert ARIBAUD805ad7e2012-01-15 22:08:40 +000018#elif defined(CONFIG_ORION5X)
19#include <asm/arch/orion5x.h>
20#endif
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053021
Albert ARIBAUD74d34422012-01-15 22:08:39 +000022DECLARE_GLOBAL_DATA_PTR;
23
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053024#define USB_WINDOW_CTRL(i) (0x320 + ((i) << 4))
25#define USB_WINDOW_BASE(i) (0x324 + ((i) << 4))
26#define USB_TARGET_DRAM 0x0
27
28/*
29 * USB 2.0 Bridge Address Decoding registers setup
30 */
Stefan Roesefe11ae22015-06-29 14:58:15 +020031#ifdef CONFIG_ARMADA_XP
32
Stefan Roesedee40d22015-07-22 18:26:13 +020033/*
34 * Armada XP and Armada 38x have different base addresses for
35 * the USB 2.0 EHCI host controller. So we need to provide
36 * a mechnism to support both here.
37 */
38#define MVUSB0_BASE \
39 (mvebu_soc_family() == MVEBU_SOC_A38X ? \
40 MVEBU_USB20_BASE : MVEBU_AXP_USB_BASE)
Anton Schubert8a333712015-07-23 15:02:09 +020041#define MVUSB_BASE(port) MVUSB0_BASE + ((port) << 12)
Stefan Roesefe11ae22015-06-29 14:58:15 +020042
43/*
44 * Once all the older Marvell SoC's (Orion, Kirkwood) are converted
45 * to the common mvebu archticture including the mbus setup, this
46 * will be the only function needed to configure the access windows
47 */
Anton Schubert8a333712015-07-23 15:02:09 +020048static void usb_brg_adrdec_setup(int index)
Stefan Roesefe11ae22015-06-29 14:58:15 +020049{
50 const struct mbus_dram_target_info *dram;
51 int i;
52
53 dram = mvebu_mbus_dram_info();
54
55 for (i = 0; i < 4; i++) {
Anton Schubert8a333712015-07-23 15:02:09 +020056 writel(0, MVUSB_BASE(index) + USB_WINDOW_CTRL(i));
57 writel(0, MVUSB_BASE(index) + USB_WINDOW_BASE(i));
Stefan Roesefe11ae22015-06-29 14:58:15 +020058 }
59
60 for (i = 0; i < dram->num_cs; i++) {
61 const struct mbus_dram_window *cs = dram->cs + i;
62
63 /* Write size, attributes and target id to control register */
Stefan Roese82b91432015-07-22 10:01:30 +020064 writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr << 8) |
65 (dram->mbus_dram_target_id << 4) | 1,
Anton Schubert8a333712015-07-23 15:02:09 +020066 MVUSB_BASE(index) + USB_WINDOW_CTRL(i));
Stefan Roesefe11ae22015-06-29 14:58:15 +020067
68 /* Write base address to base register */
Anton Schubert8a333712015-07-23 15:02:09 +020069 writel(cs->base, MVUSB_BASE(index) + USB_WINDOW_BASE(i));
Stefan Roesefe11ae22015-06-29 14:58:15 +020070 }
71}
72#else
Anton Schubert8a333712015-07-23 15:02:09 +020073#define MVUSB_BASE(port) MVUSB0_BASE
74
75static void usb_brg_adrdec_setup(int index)
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053076{
77 int i;
Albert ARIBAUD74d34422012-01-15 22:08:39 +000078 u32 size, base, attrib;
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053079
80 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
81
82 /* Enable DRAM bank */
83 switch (i) {
84 case 0:
Albert ARIBAUD74d34422012-01-15 22:08:39 +000085 attrib = MVUSB0_CPU_ATTR_DRAM_CS0;
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053086 break;
87 case 1:
Albert ARIBAUD74d34422012-01-15 22:08:39 +000088 attrib = MVUSB0_CPU_ATTR_DRAM_CS1;
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053089 break;
90 case 2:
Albert ARIBAUD74d34422012-01-15 22:08:39 +000091 attrib = MVUSB0_CPU_ATTR_DRAM_CS2;
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053092 break;
93 case 3:
Albert ARIBAUD74d34422012-01-15 22:08:39 +000094 attrib = MVUSB0_CPU_ATTR_DRAM_CS3;
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +053095 break;
96 default:
97 /* invalide bank, disable access */
98 attrib = 0;
99 break;
100 }
101
Albert ARIBAUD74d34422012-01-15 22:08:39 +0000102 size = gd->bd->bi_dram[i].size;
103 base = gd->bd->bi_dram[i].start;
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530104 if ((size) && (attrib))
Stefan Roese82b91432015-07-22 10:01:30 +0200105 writel(MVCPU_WIN_CTRL_DATA(size, USB_TARGET_DRAM,
106 attrib, MVCPU_WIN_ENABLE),
107 MVUSB0_BASE + USB_WINDOW_CTRL(i));
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530108 else
Stefan Roese82b91432015-07-22 10:01:30 +0200109 writel(MVCPU_WIN_DISABLE,
110 MVUSB0_BASE + USB_WINDOW_CTRL(i));
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530111
Stefan Roese82b91432015-07-22 10:01:30 +0200112 writel(base, MVUSB0_BASE + USB_WINDOW_BASE(i));
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530113 }
114}
Stefan Roesefe11ae22015-06-29 14:58:15 +0200115#endif
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530116
117/*
118 * Create the appropriate control structures to manage
119 * a new EHCI host controller.
120 */
Troy Kisky127efc42013-10-10 15:27:57 -0700121int ehci_hcd_init(int index, enum usb_init_type init,
122 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530123{
Anton Schubert8a333712015-07-23 15:02:09 +0200124 usb_brg_adrdec_setup(index);
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530125
Anton Schubert8a333712015-07-23 15:02:09 +0200126 *hccr = (struct ehci_hccr *)(MVUSB_BASE(index) + 0x100);
Lucas Stach676ae062012-09-26 00:14:35 +0200127 *hcor = (struct ehci_hcor *)((uint32_t) *hccr
128 + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530129
Albert ARIBAUD74d34422012-01-15 22:08:39 +0000130 debug("ehci-marvell: init hccr %x and hcor %x hc_length %d\n",
Lucas Stach676ae062012-09-26 00:14:35 +0200131 (uint32_t)*hccr, (uint32_t)*hcor,
132 (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530133
134 return 0;
135}
136
137/*
138 * Destroy the appropriate control structures corresponding
139 * the the EHCI host controller.
140 */
Lucas Stach676ae062012-09-26 00:14:35 +0200141int ehci_hcd_stop(int index)
Prafulla Wadaskar1d8937a2009-06-29 20:56:43 +0530142{
143 return 0;
144}