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
388019f1
Commit
388019f1
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
f22dede2
555a3472
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
drivers/usb/host/xhci-pci.c
+81
-0
81 additions, 0 deletions
drivers/usb/host/xhci-pci.c
with
81 additions
and
0 deletions
drivers/usb/host/xhci-pci.c
+
81
−
0
View file @
388019f1
...
...
@@ -7,12 +7,15 @@
*/
#include
<common.h>
#include
<dm.h>
#include
<errno.h>
#include
<pci.h>
#include
<usb.h>
#include
"xhci.h"
#ifndef CONFIG_DM_USB
/*
* Create the appropriate control structures to manage a new XHCI host
* controller.
...
...
@@ -58,3 +61,81 @@ int xhci_hcd_init(int index, struct xhci_hccr **ret_hccr,
void
xhci_hcd_stop
(
int
index
)
{
}
#else
struct
xhci_pci_priv
{
struct
xhci_ctrl
ctrl
;
/* Needs to come first in this struct! */
};
static
void
xhci_pci_init
(
struct
udevice
*
dev
,
struct
xhci_hccr
**
ret_hccr
,
struct
xhci_hcor
**
ret_hcor
)
{
struct
xhci_hccr
*
hccr
;
struct
xhci_hcor
*
hcor
;
u32
cmd
;
hccr
=
(
struct
xhci_hccr
*
)
dm_pci_map_bar
(
dev
,
PCI_BASE_ADDRESS_0
,
PCI_REGION_MEM
);
hcor
=
(
struct
xhci_hcor
*
)((
uintptr_t
)
hccr
+
HC_LENGTH
(
xhci_readl
(
&
hccr
->
cr_capbase
)));
debug
(
"XHCI-PCI init hccr 0x%x and hcor 0x%x hc_length %d
\n
"
,
(
u32
)
hccr
,
(
u32
)
hcor
,
(
u32
)
HC_LENGTH
(
xhci_readl
(
&
hccr
->
cr_capbase
)));
*
ret_hccr
=
hccr
;
*
ret_hcor
=
hcor
;
/* enable busmaster */
dm_pci_read_config32
(
dev
,
PCI_COMMAND
,
&
cmd
);
cmd
|=
PCI_COMMAND_MASTER
;
dm_pci_write_config32
(
dev
,
PCI_COMMAND
,
cmd
);
}
static
int
xhci_pci_probe
(
struct
udevice
*
dev
)
{
struct
xhci_hccr
*
hccr
;
struct
xhci_hcor
*
hcor
;
xhci_pci_init
(
dev
,
&
hccr
,
&
hcor
);
return
xhci_register
(
dev
,
hccr
,
hcor
);
}
static
int
xhci_pci_remove
(
struct
udevice
*
dev
)
{
int
ret
;
ret
=
xhci_deregister
(
dev
);
if
(
ret
)
return
ret
;
return
0
;
}
static
const
struct
udevice_id
xhci_pci_ids
[]
=
{
{
.
compatible
=
"xhci-pci"
},
{
}
};
U_BOOT_DRIVER
(
xhci_pci
)
=
{
.
name
=
"xhci_pci"
,
.
id
=
UCLASS_USB
,
.
probe
=
xhci_pci_probe
,
.
remove
=
xhci_pci_remove
,
.
of_match
=
xhci_pci_ids
,
.
ops
=
&
xhci_usb_ops
,
.
platdata_auto_alloc_size
=
sizeof
(
struct
usb_platdata
),
.
priv_auto_alloc_size
=
sizeof
(
struct
xhci_pci_priv
),
.
flags
=
DM_FLAG_ALLOC_PRIV_DMA
,
};
static
struct
pci_device_id
xhci_pci_supported
[]
=
{
{
PCI_DEVICE_CLASS
(
PCI_CLASS_SERIAL_USB_XHCI
,
~
0
)
},
{},
};
U_BOOT_PCI_DEVICE
(
xhci_pci
,
xhci_pci_supported
);
#endif
/* CONFIG_DM_USB */
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