mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
effcf067df
Intel's Graphics Media Accelerator (GMA) is a generic name for a wide range of video devices. Add code to set up the hardware on ivybridge. Part of the init happens in native code, part of it happens in a 16-bit option ROM for those nostalgic for the 1970s. Signed-off-by: Simon Glass <sjg@chromium.org>
23 lines
634 B
C
23 lines
634 B
C
/*
|
|
* Copyright (C) 2014 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_BD82X6X_H
|
|
#define _ASM_ARCH_BD82X6X_H
|
|
|
|
void bd82x6x_sata_init(pci_dev_t dev, const void *blob, int node);
|
|
void bd82x6x_sata_enable(pci_dev_t dev, const void *blob, int node);
|
|
void bd82x6x_pci_init(pci_dev_t dev);
|
|
void bd82x6x_usb_ehci_init(pci_dev_t dev);
|
|
void bd82x6x_usb_xhci_init(pci_dev_t dev);
|
|
int bd82x6x_init_pci_devices(void);
|
|
int gma_func0_init(pci_dev_t dev, struct pci_controller *hose,
|
|
const void *blob, int node);
|
|
int bd82x6x_init(void);
|
|
|
|
struct x86_cpu_priv;
|
|
int model_206ax_init(struct x86_cpu_priv *cpu);
|
|
|
|
#endif
|