mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 23:51:33 +00:00
controlcenterd: Disable sideband clocks
Signed-off-by: Dirk Eibach <dirk.eibach@gdsys.cc>
This commit is contained in:
parent
e1d1127a9a
commit
1c7639ae8a
1 changed files with 5 additions and 0 deletions
|
@ -57,6 +57,8 @@ struct ihs_fpga {
|
|||
u32 versions; /* 0x0004 */
|
||||
u32 fpga_version; /* 0x0008 */
|
||||
u32 fpga_features; /* 0x000c */
|
||||
u32 reserved[4]; /* 0x0010 */
|
||||
u32 control; /* 0x0020 */
|
||||
};
|
||||
|
||||
#ifndef CONFIG_TRAILBLAZER
|
||||
|
@ -384,6 +386,9 @@ static void hydra_initialize(void)
|
|||
fpga = pci_map_bar(devno, PCI_BASE_ADDRESS_0,
|
||||
PCI_REGION_MEM);
|
||||
|
||||
/* disable sideband clocks */
|
||||
writel(1, &fpga->control);
|
||||
|
||||
versions = readl(&fpga->versions);
|
||||
fpga_version = readl(&fpga->fpga_version);
|
||||
fpga_features = readl(&fpga->fpga_features);
|
||||
|
|
Loading…
Reference in a new issue