Merge branch 'master' of git://git.denx.de/u-boot
This commit is contained in:
@@ -135,12 +135,12 @@ struct ahci_sg {
|
||||
};
|
||||
|
||||
struct ahci_ioports {
|
||||
u32 cmd_addr;
|
||||
u32 scr_addr;
|
||||
u32 port_mmio;
|
||||
void __iomem *cmd_addr;
|
||||
void __iomem *scr_addr;
|
||||
void __iomem *port_mmio;
|
||||
struct ahci_cmd_hdr *cmd_slot;
|
||||
struct ahci_sg *cmd_tbl_sg;
|
||||
u32 cmd_tbl;
|
||||
ulong cmd_tbl;
|
||||
u32 rx_fis;
|
||||
};
|
||||
|
||||
|
||||
@@ -93,6 +93,7 @@ typedef struct global_data {
|
||||
#endif
|
||||
#ifdef CONFIG_PCI
|
||||
struct pci_controller *hose; /* PCI hose for early use */
|
||||
phys_addr_t pci_ram_top; /* top of region accessible to PCI */
|
||||
#endif
|
||||
#ifdef CONFIG_PCI_BOOTDELAY
|
||||
int pcidelay_done;
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
#define CONFIG_OMAP 1 /* in a TI OMAP core */
|
||||
#define CONFIG_OMAP3_AM3517CRANE 1 /* working with CRANEBOARD */
|
||||
#define CONFIG_OMAP_COMMON
|
||||
#define CONFIG_SYS_GENERIC_BOARD
|
||||
/* Common ARM Erratas */
|
||||
#define CONFIG_ARM_ERRATA_454179
|
||||
#define CONFIG_ARM_ERRATA_430973
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
#define CONFIG_OMAP 1 /* in a TI OMAP core */
|
||||
#define CONFIG_OMAP3_AM3517EVM 1 /* working with AM3517EVM */
|
||||
#define CONFIG_OMAP_COMMON
|
||||
#define CONFIG_SYS_GENERIC_BOARD
|
||||
/* Common ARM Erratas */
|
||||
#define CONFIG_ARM_ERRATA_454179
|
||||
#define CONFIG_ARM_ERRATA_430973
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
#ifndef __CONFIG_BALTOS_H
|
||||
#define __CONFIG_BALTOS_H
|
||||
|
||||
#include <linux/sizes.h>
|
||||
#include <configs/ti_am335x_common.h>
|
||||
|
||||
#define MACH_TYPE_TIAM335EVM 3589 /* Until the next sync */
|
||||
@@ -39,8 +40,7 @@
|
||||
#define CONFIG_CMD_PART
|
||||
|
||||
/* FIT support */
|
||||
#define CONFIG_FIT
|
||||
#define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
|
||||
#define CONFIG_SYS_BOOTM_LEN SZ_64M
|
||||
#define CONFIG_OF_BOARD_SETUP
|
||||
|
||||
/* UBI Support */
|
||||
@@ -54,10 +54,11 @@
|
||||
|
||||
/* I2C configuration */
|
||||
#undef CONFIG_SYS_OMAP24_I2C_SPEED
|
||||
#define CONFIG_SYS_OMAP24_I2C_SPEED 10000
|
||||
#define CONFIG_SYS_OMAP24_I2C_SPEED 1000
|
||||
|
||||
#undef CONFIG_SPL_OS_BOOT
|
||||
#ifdef CONFIG_NAND
|
||||
#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x000c0000
|
||||
#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x00080000
|
||||
#ifdef CONFIG_SPL_OS_BOOT
|
||||
#define CONFIG_CMD_SPL_NAND_OFS 0x00080000 /* os parameters */
|
||||
#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x00200000 /* kernel offset */
|
||||
@@ -80,7 +81,9 @@
|
||||
"ubifsmount ubi0:kernel; " \
|
||||
"ubifsload $loadaddr kernel-fit.itb;" \
|
||||
"ubifsumount; " \
|
||||
"bootm ${loadaddr}#conf${board_name}\0"
|
||||
"bootm ${loadaddr}#conf${board_name}; " \
|
||||
"if test $? -ne 0; then echo Using default FIT config; " \
|
||||
"bootm ${loadaddr}; fi;\0"
|
||||
#else
|
||||
#define NANDARGS ""
|
||||
#endif
|
||||
@@ -236,6 +239,7 @@
|
||||
|
||||
#ifdef CONFIG_NAND
|
||||
#define CONFIG_NAND_OMAP_GPMC
|
||||
#define CONFIG_NAND_OMAP_GPMC_PREFETCH
|
||||
#define CONFIG_NAND_OMAP_ELM
|
||||
#define CONFIG_SYS_NAND_5_ADDR_CYCLE
|
||||
#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
|
||||
@@ -278,9 +282,9 @@
|
||||
#define CONFIG_USB_GADGET_VBUS_DRAW 2
|
||||
#define CONFIG_MUSB_HOST
|
||||
#define CONFIG_AM335X_USB0
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_PERIPHERAL
|
||||
#define CONFIG_AM335X_USB0_MODE MUSB_HOST
|
||||
#define CONFIG_AM335X_USB1
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_HOST
|
||||
#define CONFIG_AM335X_USB1_MODE MUSB_OTG
|
||||
|
||||
#ifdef CONFIG_MUSB_HOST
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
@@ -32,15 +32,16 @@
|
||||
#define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
|
||||
#define CONFIG_PCI_IO_SIZE 0xe000
|
||||
|
||||
#define CONFIG_PCI_CONFIG_HOST_BRIDGE
|
||||
#define CONFIG_SYS_EARLY_PCI_INIT
|
||||
#define CONFIG_PCI_PNP
|
||||
#define CONFIG_E1000
|
||||
|
||||
#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial\0" \
|
||||
"stdout=serial\0" \
|
||||
"stderr=serial\0"
|
||||
#define CONFIG_STD_DEVICES_SETTINGS "stdin=serial,vga,usbkbd\0" \
|
||||
"stdout=serial,vga\0" \
|
||||
"stderr=serial,vga\0"
|
||||
|
||||
#define CONFIG_SCSI_DEV_LIST \
|
||||
#define CONFIG_SCSI_DEV_LIST \
|
||||
{PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TCF_SATA}
|
||||
|
||||
#define CONFIG_SPI_FLASH_SST
|
||||
@@ -55,9 +56,8 @@
|
||||
#define CONFIG_PCH_GBE
|
||||
#define CONFIG_PHYLIB
|
||||
|
||||
/* Video is not supported */
|
||||
#undef CONFIG_VIDEO
|
||||
#undef CONFIG_CFB_CONSOLE
|
||||
/* TunnelCreek IGD support */
|
||||
#define CONFIG_VGA_AS_SINGLE_DEVICE
|
||||
|
||||
/* Environment configuration */
|
||||
#define CONFIG_ENV_SECT_SIZE 0x1000
|
||||
|
||||
@@ -29,12 +29,19 @@
|
||||
#define CONFIG_CMD_CACHE
|
||||
#define CONFIG_CMD_DHCP
|
||||
#define CONFIG_CMD_ENV
|
||||
#define CONFIG_CMD_EXT2
|
||||
#define CONFIG_CMD_EXT4
|
||||
#define CONFIG_CMD_FAT
|
||||
#define CONFIG_CMD_FS_GENERIC
|
||||
#define CONFIG_CMD_I2C
|
||||
#define CONFIG_CMD_MMC
|
||||
#define CONFIG_CMD_PING
|
||||
#define CONFIG_CMD_SCSI
|
||||
#define CONFIG_CMD_SF
|
||||
#define CONFIG_CMD_SPI
|
||||
#define CONFIG_CMD_TFTPPUT
|
||||
#define CONFIG_CMD_TIME
|
||||
#define CONFIG_CMD_USB
|
||||
|
||||
/* I2C */
|
||||
#define CONFIG_SYS_I2C
|
||||
@@ -48,6 +55,40 @@
|
||||
#define CONFIG_SF_DEFAULT_MODE SPI_MODE_3
|
||||
#define CONFIG_SPI_FLASH_STMICRO
|
||||
|
||||
/*
|
||||
* SDIO/MMC Card Configuration
|
||||
*/
|
||||
#define CONFIG_MMC
|
||||
#define CONFIG_MMC_SDMA
|
||||
#define CONFIG_GENERIC_MMC
|
||||
#define CONFIG_SDHCI
|
||||
#define CONFIG_MV_SDHCI
|
||||
#define CONFIG_SYS_MMC_BASE MVEBU_SDIO_BASE
|
||||
|
||||
/*
|
||||
* SATA/SCSI/AHCI configuration
|
||||
*/
|
||||
#define CONFIG_LIBATA
|
||||
#define CONFIG_SCSI_AHCI
|
||||
#define CONFIG_SCSI_AHCI_PLAT
|
||||
#define CONFIG_SYS_SCSI_MAX_SCSI_ID 2
|
||||
#define CONFIG_SYS_SCSI_MAX_LUN 1
|
||||
#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
|
||||
CONFIG_SYS_SCSI_MAX_LUN)
|
||||
|
||||
/* Partition support */
|
||||
#define CONFIG_DOS_PARTITION
|
||||
#define CONFIG_EFI_PARTITION
|
||||
|
||||
/* Additional FS support/configuration */
|
||||
#define CONFIG_SUPPORT_VFAT
|
||||
|
||||
/* USB/EHCI configuration */
|
||||
#define CONFIG_USB_EHCI
|
||||
#define CONFIG_USB_STORAGE
|
||||
#define CONFIG_USB_EHCI_MARVELL
|
||||
#define CONFIG_EHCI_IS_TDI
|
||||
|
||||
/* Environment in SPI NOR flash */
|
||||
#define CONFIG_ENV_IS_IN_SPI_FLASH
|
||||
#define CONFIG_ENV_OFFSET (1 << 20) /* 1MiB in */
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
|
||||
"addr_mon=0x0c140000\0" \
|
||||
"args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
|
||||
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=2,2048\0" \
|
||||
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \
|
||||
"name_fdt=uImage-k2e-evm.dtb\0" \
|
||||
"name_mon=skern-k2e-evm.bin\0" \
|
||||
"name_ubi=k2e-evm-ubifs.ubi\0" \
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
|
||||
"addr_mon=0x0c5f0000\0" \
|
||||
"args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
|
||||
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=2,2048\0" \
|
||||
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,2048\0" \
|
||||
"name_fdt=uImage-k2hk-evm.dtb\0" \
|
||||
"name_mon=skern-k2hk-evm.bin\0" \
|
||||
"name_ubi=k2hk-evm-ubifs.ubi\0" \
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
#define CONFIG_EXTRA_ENV_KS2_BOARD_SETTINGS \
|
||||
"addr_mon=0x0c140000\0" \
|
||||
"args_ubi=setenv bootargs ${bootargs} rootfstype=ubifs " \
|
||||
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=2,4096\0" \
|
||||
"root=ubi0:rootfs rootflags=sync rw ubi.mtd=ubifs,4096\0" \
|
||||
"name_fdt=uImage-k2l-evm.dtb\0" \
|
||||
"name_mon=skern-k2l-evm.bin\0" \
|
||||
"name_ubi=k2l-evm-ubifs.ubi\0" \
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
#define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
|
||||
#define CONFIG_PCI_IO_SIZE 0xe000
|
||||
|
||||
#define CONFIG_PCI_CONFIG_HOST_BRIDGE
|
||||
#define CONFIG_SYS_EARLY_PCI_INIT
|
||||
#define CONFIG_PCI_PNP
|
||||
#define CONFIG_RTL8169
|
||||
@@ -52,9 +53,6 @@
|
||||
#undef CONFIG_USB_MAX_CONTROLLER_COUNT
|
||||
#define CONFIG_USB_MAX_CONTROLLER_COUNT 1
|
||||
|
||||
#define CONFIG_X86_OPTION_ROM_FILE vga.bin
|
||||
#define CONFIG_X86_OPTION_ROM_ADDR 0xfff90000
|
||||
|
||||
#define VIDEO_IO_OFFSET 0
|
||||
#define CONFIG_X86EMU_RAW_IO
|
||||
#define CONFIG_VGA_AS_SINGLE_DEVICE
|
||||
@@ -65,8 +63,7 @@
|
||||
/* Avoid a warning in the Realtek Ethernet driver */
|
||||
#define CONFIG_SYS_CACHELINE_SIZE 16
|
||||
|
||||
/* Environment in SPI flash is unsupported for now */
|
||||
#undef CONFIG_ENV_IS_IN_SPI_FLASH
|
||||
#define CONFIG_ENV_IS_NOWHERE
|
||||
#define CONFIG_ENV_SECT_SIZE 0x1000
|
||||
#define CONFIG_ENV_OFFSET 0x007fe000
|
||||
|
||||
#endif /* __CONFIG_H */
|
||||
|
||||
@@ -480,7 +480,7 @@
|
||||
|
||||
/*
|
||||
* Variant 2 partition layout
|
||||
* chip-size = 256MiB
|
||||
* chip-size = 256MiB or 512 MiB
|
||||
*| name | size | address area |
|
||||
*-------------------------------------------------------
|
||||
*| spl | 128.000 KiB | 0x 0..0x 1ffff |
|
||||
@@ -490,23 +490,23 @@
|
||||
*| u-boot | 1.875 MiB | 0x 80000..0x 25ffff |
|
||||
*| uboot.env0 | 512.000 KiB | 0x 260000..0x 2Dffff |
|
||||
*| uboot.env1 | 512.000 KiB | 0x 2E0000..0x 35ffff |
|
||||
*| rootfs | 148.000 MiB | 0x 360000..0x 975ffff |
|
||||
*| mtdoops | 512.000 KiB | 0x 9760000..0x 98Dffff |
|
||||
*|configuration | 104.125 MiB | 0x 97E0000..0x fffffff |
|
||||
*| mtdoops | 512.000 KiB | 0x 360000..0x 3dffff |
|
||||
*| (256) rootfs | 252.125 MiB | 0x 3E0000..0x fffffff |
|
||||
*| (512) rootfs | 508.125 MiB | 0x 3E0000..0x1fffffff |
|
||||
*-------------------------------------------------------
|
||||
*/
|
||||
|
||||
#define MTDPARTS_DEFAULT_V2 "mtdparts=" MTDIDS_NAME_STR ":" \
|
||||
"128k(spl)," \
|
||||
"128k(spl.backup1)," \
|
||||
"128k(spl.backup2)," \
|
||||
"128k(spl.backup3)," \
|
||||
"1920k(u-boot)," \
|
||||
"512k(u-boot.env0)," \
|
||||
"512k(u-boot.env1)," \
|
||||
"148m(rootfs)," \
|
||||
"512k(mtdoops)," \
|
||||
"-(configuration)"
|
||||
"128k(spl)," \
|
||||
"128k(spl.backup1)," \
|
||||
"128k(spl.backup2)," \
|
||||
"128k(spl.backup3)," \
|
||||
"1920k(u-boot)," \
|
||||
"512k(u-boot.env0)," \
|
||||
"512k(u-boot.env1)," \
|
||||
"512k(mtdoops)," \
|
||||
"-(rootfs)"
|
||||
|
||||
|
||||
#define DFU_ALT_INFO_NAND_V2 \
|
||||
"spl part 0 1;" \
|
||||
@@ -516,8 +516,7 @@
|
||||
"u-boot part 0 5;" \
|
||||
"u-boot.env0 part 0 6;" \
|
||||
"u-boot.env1 part 0 7;" \
|
||||
"rootfs partubi 0 8;" \
|
||||
"configuration partubi 0 10"
|
||||
"rootfs partubi 0 9" \
|
||||
|
||||
#define CONFIG_ENV_SETTINGS_NAND_V2 \
|
||||
"nand_active_ubi_vol=rootfs_a\0" \
|
||||
@@ -534,7 +533,7 @@
|
||||
"setenv nand_active_ubi_vol ${rootfs_name}_b;" \
|
||||
"fi;" \
|
||||
"setenv nand_root ubi0:${nand_active_ubi_vol} rw " \
|
||||
"ubi.mtd=7,2048 ubi.mtd=9,2048;" \
|
||||
"ubi.mtd=rootfs,2048;" \
|
||||
"setenv bootargs ${bootargs} " \
|
||||
"root=${nand_root} noinitrd ${mtdparts} " \
|
||||
"rootfstype=${nand_root_fs_type} ip=${ip_method} " \
|
||||
|
||||
@@ -52,10 +52,10 @@
|
||||
#define CONFIG_STM32_SERIAL
|
||||
/*
|
||||
* Configuration of the USART
|
||||
* 1: TX:PA9 PX:PA10
|
||||
* 1: TX:PA9 RX:PA10
|
||||
* 2: TX:PD5 RX:PD6
|
||||
* 3: TX:PC10 RX:PC11
|
||||
* 6: TX:PC6 RX:PC7
|
||||
* 6: TX:PG14 RX:PG9
|
||||
*/
|
||||
#define CONFIG_STM32_USART 1
|
||||
|
||||
|
||||
@@ -23,7 +23,9 @@
|
||||
#define PHYS_SDRAM_1_SIZE 0x00198000
|
||||
|
||||
#define CONFIG_ENV_SIZE 0x10000
|
||||
#define CONFIG_ENV_IS_IN_FLASH
|
||||
#define CONFIG_ENV_IS_IN_SPI_FLASH
|
||||
#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
|
||||
#define CONFIG_ENV_OFFSET 0x30000
|
||||
#define CONFIG_ENV_ADDR \
|
||||
(PHYS_SDRAM_1_SIZE - CONFIG_ENV_SIZE)
|
||||
#define CONFIG_SYS_MAXARGS 16
|
||||
@@ -72,7 +74,20 @@
|
||||
#define CONFIG_BOOTDELAY 3
|
||||
#define CONFIG_BOOTCOMMAND "go 0x40040000"
|
||||
|
||||
#define CONFIG_OF_SEPARATE
|
||||
#define CONFIG_OF_CONTROL
|
||||
#define CONFIG_OF_LIBFDT
|
||||
|
||||
/*
|
||||
+ * QSPI support
|
||||
+ */
|
||||
#ifdef CONFIG_OF_CONTROL /* QSPI is controlled via DT */
|
||||
#define CONFIG_CADENCE_QSPI
|
||||
#define CONFIG_CQSPI_DECODER 0
|
||||
#define CONFIG_CQSPI_REF_CLK ((30/4)/2)*1000*1000
|
||||
#define CONFIG_CMD_SPI
|
||||
|
||||
#define CONFIG_SPI_FLASH_STMICRO /* Micron/Numonyx flash */
|
||||
#define CONFIG_SPI_FLASH_WINBOND /* WINBOND */
|
||||
#define CONFIG_CMD_SF
|
||||
#endif
|
||||
|
||||
#endif /* __CONFIG_H */
|
||||
|
||||
@@ -26,9 +26,6 @@
|
||||
{PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_AHCI_MOBILE}, \
|
||||
{PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_AHCI}
|
||||
|
||||
#define CONFIG_X86_OPTION_ROM_FILE pci8086,0166.bin
|
||||
#define CONFIG_X86_OPTION_ROM_ADDR 0xfff90000
|
||||
|
||||
#define CONFIG_PCI_MEM_BUS 0xe0000000
|
||||
#define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
|
||||
#define CONFIG_PCI_MEM_SIZE 0x10000000
|
||||
|
||||
@@ -58,6 +58,14 @@ struct cpu_ops {
|
||||
* @return 0 if OK, -ve on error
|
||||
*/
|
||||
int (*get_info)(struct udevice *dev, struct cpu_info *info);
|
||||
|
||||
/**
|
||||
* get_count() - Get number of CPUs
|
||||
*
|
||||
* @dev: Device to check (UCLASS_CPU)
|
||||
* @return CPU count if OK, -ve on error
|
||||
*/
|
||||
int (*get_count)(struct udevice *dev);
|
||||
};
|
||||
|
||||
#define cpu_get_ops(dev) ((struct cpu_ops *)(dev)->driver->ops)
|
||||
@@ -81,4 +89,12 @@ int cpu_get_desc(struct udevice *dev, char *buf, int size);
|
||||
*/
|
||||
int cpu_get_info(struct udevice *dev, struct cpu_info *info);
|
||||
|
||||
/**
|
||||
* cpu_get_count() - Get number of CPUs
|
||||
*
|
||||
* @dev: Device to check (UCLASS_CPU)
|
||||
* @return CPU count if OK, -ve on error
|
||||
*/
|
||||
int cpu_get_count(struct udevice *dev);
|
||||
|
||||
#endif
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
*
|
||||
* Copyright (C) 2009 Nokia
|
||||
* Copyright (C) 2009-2010 Texas Instruments
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*/
|
||||
|
||||
#ifndef _DT_BINDINGS_PINCTRL_OMAP_H
|
||||
|
||||
@@ -33,8 +33,10 @@
|
||||
|
||||
#ifdef CONFIG_REGEX
|
||||
#define ENV_DOT_ESCAPE "\\"
|
||||
#define ETHADDR_WILDCARD "\\d?"
|
||||
#else
|
||||
#define ENV_DOT_ESCAPE
|
||||
#define ETHADDR_WILDCARD
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_CMD_DNS
|
||||
@@ -53,7 +55,7 @@
|
||||
"nvlan:nvlan," \
|
||||
"vlan:vlan," \
|
||||
DNS_CALLBACK \
|
||||
"eth\\d?addr:ethaddr,"
|
||||
"eth" ETHADDR_WILDCARD "addr:ethaddr,"
|
||||
#else
|
||||
#define NET_CALLBACKS
|
||||
#endif
|
||||
|
||||
@@ -484,8 +484,9 @@ int add_mtd_partitions(struct mtd_info *, const struct mtd_partition *, int);
|
||||
int del_mtd_partitions(struct mtd_info *);
|
||||
|
||||
int mtd_arg_off(const char *arg, int *idx, loff_t *off, loff_t *size,
|
||||
loff_t *maxsize, int devtype, int chipsize);
|
||||
loff_t *maxsize, int devtype, uint64_t chipsize);
|
||||
int mtd_arg_off_size(int argc, char *const argv[], int *idx, loff_t *off,
|
||||
loff_t *size, loff_t *maxsize, int devtype, int chipsize);
|
||||
loff_t *size, loff_t *maxsize, int devtype,
|
||||
uint64_t chipsize);
|
||||
#endif
|
||||
#endif /* __MTD_MTD_H__ */
|
||||
|
||||
@@ -513,6 +513,16 @@ struct pci_controller {
|
||||
|
||||
int indirect_type;
|
||||
|
||||
/*
|
||||
* TODO(sjg@chromium.org): With driver model we use struct
|
||||
* pci_controller for both the controller and any bridge devices
|
||||
* attached to it. But there is only one region list and it is in the
|
||||
* top-level controller.
|
||||
*
|
||||
* This could be changed so that struct pci_controller is only used
|
||||
* for PCI controllers and a separate UCLASS (or perhaps
|
||||
* UCLASS_PCI_GENERIC) is used for bridges.
|
||||
*/
|
||||
struct pci_region regions[MAX_PCI_REGIONS];
|
||||
int region_count;
|
||||
|
||||
@@ -711,15 +721,6 @@ void pci_write_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum,
|
||||
* */
|
||||
u32 pci_read_bar32(struct pci_controller *hose, pci_dev_t dev, int barnum);
|
||||
|
||||
/**
|
||||
* pciauto_setup_rom() - Set up access to a device ROM
|
||||
*
|
||||
* @hose: PCI hose to use
|
||||
* @dev: PCI device to adjust
|
||||
* @return 0 if done, -ve on error
|
||||
*/
|
||||
int pciauto_setup_rom(struct pci_controller *hose, pci_dev_t dev);
|
||||
|
||||
/**
|
||||
* pci_hose_find_devices() - Find devices by vendor/device ID
|
||||
*
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
#define _VBE_H
|
||||
|
||||
/* these structs are for input from and output to OF */
|
||||
struct __packed screen_info {
|
||||
struct __packed vbe_screen_info {
|
||||
u8 display_type; /* 0=NONE, 1= analog, 2=digital */
|
||||
u16 screen_width;
|
||||
u16 screen_height;
|
||||
@@ -23,7 +23,7 @@ struct __packed screen_info {
|
||||
u8 edid_block_zero[128];
|
||||
};
|
||||
|
||||
struct __packed screen_info_input {
|
||||
struct __packed vbe_screen_info_input {
|
||||
u8 signature[4];
|
||||
u16 size_reserved;
|
||||
u8 monitor_number;
|
||||
|
||||
Reference in New Issue
Block a user