Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Johannes Rudolph
lede-mikrotik
Commits
a89b690f
Commit
a89b690f
authored
16 years ago
by
Gabor Juhos
Browse files
Options
Downloads
Patches
Plain Diff
more ehci driver cleanup
SVN-Revision: 13454
parent
0449ca0d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
+37
-35
37 additions, 35 deletions
target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
with
37 additions
and
35 deletions
target/linux/ar71xx/files/drivers/usb/host/ehci-ar71xx.c
+
37
−
35
View file @
a89b690f
/*
/*
*
EHCI HCD (Host Controller Driver) for USB
.
*
Bus Glue for Atheros AR71xx built-in EHCI controller
.
*
*
* Copyright (C) 2007 Atheros Communications, Inc.
* Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
* Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
* Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
* Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
*
*
* Bus Glue for Atheros AR71xx built-in EHCI controller
* Parts of this file are based on Atheros' 2.6.15 BSP
* Copyright (C) 2007 Atheros Communications, Inc.
*
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation.
*/
*/
#include
<linux/platform_device.h>
#include
<linux/platform_device.h>
...
@@ -14,16 +17,16 @@
...
@@ -14,16 +17,16 @@
extern
int
usb_disabled
(
void
);
extern
int
usb_disabled
(
void
);
static
void
ar71xx_s
tart_ehci
(
struct
platform_device
*
pdev
)
static
void
ehci_
ar71xx_s
etup
(
void
)
{
{
/*
/*
* TODO: implement
* TODO: implement
*/
*/
}
}
static
int
usb_
ehci_ar71xx_probe
(
const
struct
hc_driver
*
driver
,
static
int
ehci_ar71xx_probe
(
const
struct
hc_driver
*
driver
,
struct
usb_hcd
**
hcd_out
,
struct
usb_hcd
**
hcd_out
,
struct
platform_device
*
pdev
)
struct
platform_device
*
pdev
)
{
{
struct
usb_hcd
*
hcd
;
struct
usb_hcd
*
hcd
;
struct
ehci_hcd
*
ehci
;
struct
ehci_hcd
*
ehci
;
...
@@ -39,17 +42,17 @@ static int usb_ehci_ar71xx_probe(const struct hc_driver *driver,
...
@@ -39,17 +42,17 @@ static int usb_ehci_ar71xx_probe(const struct hc_driver *driver,
}
}
irq
=
res
->
start
;
irq
=
res
->
start
;
hcd
=
usb_create_hcd
(
driver
,
&
pdev
->
dev
,
pdev
->
dev
.
bus_id
);
if
(
!
hcd
)
return
-
ENOMEM
;
res
=
platform_get_resource
(
pdev
,
IORESOURCE_MEM
,
0
);
res
=
platform_get_resource
(
pdev
,
IORESOURCE_MEM
,
0
);
if
(
!
res
)
{
if
(
!
res
)
{
dev_dbg
(
&
pdev
->
dev
,
"no base address specified for %s
\n
"
,
dev_dbg
(
&
pdev
->
dev
,
"no base address specified for %s
\n
"
,
pdev
->
dev
.
bus_id
);
pdev
->
dev
.
bus_id
);
ret
=
-
ENODEV
;
return
-
ENODEV
;
goto
err_put_hcd
;
}
}
hcd
=
usb_create_hcd
(
driver
,
&
pdev
->
dev
,
pdev
->
dev
.
bus_id
);
if
(
!
hcd
)
return
-
ENOMEM
;
hcd
->
rsrc_start
=
res
->
start
;
hcd
->
rsrc_start
=
res
->
start
;
hcd
->
rsrc_len
=
res
->
end
-
res
->
start
+
1
;
hcd
->
rsrc_len
=
res
->
end
-
res
->
start
+
1
;
...
@@ -66,12 +69,13 @@ static int usb_ehci_ar71xx_probe(const struct hc_driver *driver,
...
@@ -66,12 +69,13 @@ static int usb_ehci_ar71xx_probe(const struct hc_driver *driver,
goto
err_release_region
;
goto
err_release_region
;
}
}
ehci
=
hcd_to_ehci
(
hcd
);
ehci
=
hcd_to_ehci
(
hcd
);
ehci
->
caps
=
hcd
->
regs
;
ehci
->
caps
=
hcd
->
regs
;
ehci
->
regs
=
hcd
->
regs
+
HC_LENGTH
(
readl
(
&
ehci
->
caps
->
hc_capbase
));
ehci
->
regs
=
hcd
->
regs
+
ehci
->
hcs_params
=
readl
(
&
ehci
->
caps
->
hcs_params
);
HC_LENGTH
(
ehci_readl
(
ehci
,
&
ehci
->
caps
->
hc_capbase
));
ehci
->
hcs_params
=
ehci_readl
(
ehci
,
&
ehci
->
caps
->
hcs_params
);
ar71xx_s
tart_ehci
(
pdev
);
ehci_
ar71xx_s
etup
(
);
ret
=
usb_add_hcd
(
hcd
,
irq
,
IRQF_DISABLED
|
IRQF_SHARED
);
ret
=
usb_add_hcd
(
hcd
,
irq
,
IRQF_DISABLED
|
IRQF_SHARED
);
if
(
ret
)
if
(
ret
)
...
@@ -89,8 +93,8 @@ static int usb_ehci_ar71xx_probe(const struct hc_driver *driver,
...
@@ -89,8 +93,8 @@ static int usb_ehci_ar71xx_probe(const struct hc_driver *driver,
return
ret
;
return
ret
;
}
}
static
void
usb_
ehci_ar71xx_remove
(
struct
usb_hcd
*
hcd
,
static
void
ehci_ar71xx_remove
(
struct
usb_hcd
*
hcd
,
struct
platform_device
*
pdev
)
struct
platform_device
*
pdev
)
{
{
usb_remove_hcd
(
hcd
);
usb_remove_hcd
(
hcd
);
iounmap
(
hcd
->
regs
);
iounmap
(
hcd
->
regs
);
...
@@ -140,32 +144,30 @@ static const struct hc_driver ehci_ar71xx_hc_driver = {
...
@@ -140,32 +144,30 @@ static const struct hc_driver ehci_ar71xx_hc_driver = {
#endif
#endif
};
};
static
int
ehci_
hcd_
ar71xx_dr
v
_probe
(
struct
platform_device
*
pdev
)
static
int
ehci_ar71xx_dr
iver
_probe
(
struct
platform_device
*
pdev
)
{
{
struct
usb_hcd
*
hcd
=
NULL
;
struct
usb_hcd
*
hcd
=
NULL
;
int
ret
;
ret
=
-
ENODEV
;
if
(
usb_disabled
())
if
(
!
usb_disabled
())
return
-
ENODEV
;
ret
=
usb_ehci_ar71xx_probe
(
&
ehci_ar71xx_hc_driver
,
&
hcd
,
pdev
);
return
ret
;
return
ehci_ar71xx_probe
(
&
ehci_ar71xx_hc_driver
,
&
hcd
,
pdev
)
;
}
}
static
int
ehci_
hcd_
ar71xx_dr
v
_remove
(
struct
platform_device
*
pdev
)
static
int
ehci_ar71xx_dr
iver
_remove
(
struct
platform_device
*
pdev
)
{
{
struct
usb_hcd
*
hcd
=
platform_get_drvdata
(
pdev
);
struct
usb_hcd
*
hcd
=
platform_get_drvdata
(
pdev
);
usb_
ehci_ar71xx_remove
(
hcd
,
pdev
);
ehci_ar71xx_remove
(
hcd
,
pdev
);
return
0
;
return
0
;
}
}
static
struct
platform_driver
ehci_hcd_ar71xx_driver
=
{
MODULE_ALIAS
(
"platform:ar71xx-ehci"
);
.
probe
=
ehci_hcd_ar71xx_drv_probe
,
.
remove
=
ehci_hcd_ar71xx_drv_remove
,
static
struct
platform_driver
ehci_ar71xx_driver
=
{
.
probe
=
ehci_ar71xx_driver_probe
,
.
remove
=
ehci_ar71xx_driver_remove
,
.
driver
=
{
.
driver
=
{
.
name
=
"ar71xx-ehci"
,
.
name
=
"ar71xx-ehci"
,
}
}
};
};
MODULE_ALIAS
(
"platform:ar71xx-ehci"
);
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