Re: [U-Boot] [PATCH 5/6] x86: ivybridge: Remove the dead codes that programs pci bridge

2015-10-18 Thread Simon Glass
On 3 October 2015 at 08:29, Simon Glass  wrote:
> On 1 October 2015 at 08:36, Bin Meng  wrote:
>> Remove bd82x6x_pci_bus_enable_resources() that is not called anywhere.
>>
>> Signed-off-by: Bin Meng 
>> ---
>>
>>  arch/x86/cpu/ivybridge/bd82x6x.c | 32 
>>  1 file changed, 32 deletions(-)
>
> Acked-by: Simon Glass 

Applied to u-boot-x86, thanks!
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 5/6] x86: ivybridge: Remove the dead codes that programs pci bridge

2015-10-03 Thread Simon Glass
On 1 October 2015 at 08:36, Bin Meng  wrote:
> Remove bd82x6x_pci_bus_enable_resources() that is not called anywhere.
>
> Signed-off-by: Bin Meng 
> ---
>
>  arch/x86/cpu/ivybridge/bd82x6x.c | 32 
>  1 file changed, 32 deletions(-)

Acked-by: Simon Glass 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH 5/6] x86: ivybridge: Remove the dead codes that programs pci bridge

2015-10-01 Thread Bin Meng
Remove bd82x6x_pci_bus_enable_resources() that is not called anywhere.

Signed-off-by: Bin Meng 
---

 arch/x86/cpu/ivybridge/bd82x6x.c | 32 
 1 file changed, 32 deletions(-)

diff --git a/arch/x86/cpu/ivybridge/bd82x6x.c b/arch/x86/cpu/ivybridge/bd82x6x.c
index ca8cccf..3e7a907 100644
--- a/arch/x86/cpu/ivybridge/bd82x6x.c
+++ b/arch/x86/cpu/ivybridge/bd82x6x.c
@@ -55,38 +55,6 @@ void bd82x6x_pci_init(pci_dev_t dev)
x86_pci_write_config16(dev, SECSTS, reg16);
 }
 
-#define PCI_BRIDGE_UPDATE_COMMAND
-void bd82x6x_pci_dev_enable_resources(pci_dev_t dev)
-{
-   uint16_t command;
-
-   command = x86_pci_read_config16(dev, PCI_COMMAND);
-   command |= PCI_COMMAND_IO;
-#ifdef PCI_BRIDGE_UPDATE_COMMAND
-   /*
-* If we write to PCI_COMMAND, on some systems this will cause the
-* ROM and APICs to become invisible.
-*/
-   debug("%x cmd <- %02x\n", dev, command);
-   x86_pci_write_config16(dev, PCI_COMMAND, command);
-#else
-   printf("%s cmd <- %02x (NOT WRITTEN!)\n", dev_path(dev), command);
-#endif
-}
-
-void bd82x6x_pci_bus_enable_resources(pci_dev_t dev)
-{
-   uint16_t ctrl;
-
-   ctrl = x86_pci_read_config16(dev, PCI_BRIDGE_CONTROL);
-   ctrl |= PCI_COMMAND_IO;
-   ctrl |= PCI_BRIDGE_CTL_VGA;
-   debug("%x bridge ctrl <- %04x\n", dev, ctrl);
-   x86_pci_write_config16(dev, PCI_BRIDGE_CONTROL, ctrl);
-
-   bd82x6x_pci_dev_enable_resources(dev);
-}
-
 static int bd82x6x_probe(struct udevice *dev)
 {
const void *blob = gd->fdt_blob;
-- 
1.8.2.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot