Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jack Humbert
reform-boundary-uboot
Commits
68f7289b
Commit
68f7289b
authored
8 years ago
by
Tom Rini
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of
git://git.denx.de/u-boot-usb
parents
2f6b4706
57de41e9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
drivers/usb/host/ehci-fsl.c
+2
-1
2 additions, 1 deletion
drivers/usb/host/ehci-fsl.c
drivers/usb/host/ehci-mx6.c
+7
-3
7 additions, 3 deletions
drivers/usb/host/ehci-mx6.c
with
9 additions
and
4 deletions
drivers/usb/host/ehci-fsl.c
+
2
−
1
View file @
68f7289b
...
...
@@ -65,7 +65,8 @@ int ehci_hcd_init(int index, enum usb_init_type init,
mdelay
(
5
);
}
memset
(
current_usb_controller
,
'\0'
,
5
);
snprintf
(
current_usb_controller
,
4
,
"usb%d"
,
index
+
1
);
snprintf
(
current_usb_controller
,
sizeof
(
current_usb_controller
),
"usb%d"
,
index
+
1
);
switch
(
index
)
{
case
0
:
...
...
This diff is collapsed.
Click to expand it.
drivers/usb/host/ehci-mx6.c
+
7
−
3
View file @
68f7289b
...
...
@@ -194,8 +194,9 @@ struct usbnc_regs {
u32
reserve1
[
10
];
u32
phy_cfg1
;
u32
phy_cfg2
;
u32
reserve2
;
u32
phy_status
;
u32
reserve
2
[
4
];
u32
reserve
3
[
4
];
u32
adp_cfg1
;
u32
adp_cfg2
;
u32
adp_status
;
...
...
@@ -207,8 +208,11 @@ static void usb_power_config(int index)
(
0x10000
*
index
)
+
USBNC_OFFSET
);
void
__iomem
*
phy_cfg2
=
(
void
__iomem
*
)(
&
usbnc
->
phy_cfg2
);
/* Enable usb_otg_id detection */
setbits_le32
(
phy_cfg2
,
USBNC_PHYCFG2_ACAENB
);
/*
* Clear the ACAENB to enable usb_otg_id detection,
* otherwise it is the ACA detection enabled.
*/
clrbits_le32
(
phy_cfg2
,
USBNC_PHYCFG2_ACAENB
);
}
int
usb_phy_mode
(
int
port
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment