6b5bc77c9b
Stefan thinks they don't add value. Command used: sed -i -e '/file is part of /d' $(git grep "file is part of " |egrep ":( */\*.*\*/\$|#|;#|-- | *\* )" | cut -d: -f1 |grep -v crossgcc |grep -v gcov | grep -v /elf.h |grep -v nvramtool) The exceptions are for: - crossgcc (patch file) - gcov (imported from gcc) - elf.h (imported from GNU's libc) - nvramtool (more complicated header) The removed lines are: - fmt.Fprintln(f, "/* This file is part of the coreboot project. */") -# This file is part of a set of unofficial pre-commit hooks available -/* This file is part of coreboot */ -# This file is part of msrtool. -/* This file is part of msrtool. */ - * This file is part of ncurses, designed to be appended after curses.h.in -/* This file is part of pgtblgen. */ - * This file is part of the coreboot project. - /* This file is part of the coreboot project. */ -# This file is part of the coreboot project. -# This file is part of the coreboot project. -## This file is part of the coreboot project. --- This file is part of the coreboot project. -/* This file is part of the coreboot project */ -/* This file is part of the coreboot project. */ -;## This file is part of the coreboot project. -# This file is part of the coreboot project. It originated in the - * This file is part of the coreinfo project. -## This file is part of the coreinfo project. - * This file is part of the depthcharge project. -/* This file is part of the depthcharge project. */ -/* This file is part of the ectool project. */ - * This file is part of the GNU C Library. - * This file is part of the libpayload project. -## This file is part of the libpayload project. -/* This file is part of the Linux kernel. */ -## This file is part of the superiotool project. -/* This file is part of the superiotool project */ -/* This file is part of uio_usbdebug */ Change-Id: I82d872b3b337388c93d5f5bf704e9ee9e53ab3a9 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41194 Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
68 lines
1.7 KiB
C
68 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <cbmem.h>
|
|
#include <device/pci.h>
|
|
#include <device/pci_ids.h>
|
|
#include <soc/iomap.h>
|
|
#include <soc/ramstage.h>
|
|
|
|
#define RES_IN_KIB(r) ((r) >> 10)
|
|
|
|
static void nc_read_resources(struct device *dev)
|
|
{
|
|
unsigned long base_k;
|
|
int index = 0;
|
|
unsigned long size_k;
|
|
|
|
/* Read standard PCI resources. */
|
|
pci_dev_read_resources(dev);
|
|
|
|
/* 0 -> 0xa0000 */
|
|
base_k = 0;
|
|
size_k = 0xa0000 - base_k;
|
|
ram_resource(dev, index++, RES_IN_KIB(base_k), RES_IN_KIB(size_k));
|
|
|
|
/*
|
|
* Reserve everything between A segment and 1MB:
|
|
*
|
|
* 0xa0000 - 0xbffff: legacy VGA
|
|
* 0xc0000 - 0xdffff: RAM
|
|
* 0xe0000 - 0xfffff: ROM shadow
|
|
*/
|
|
base_k += size_k;
|
|
size_k = 0xc0000 - base_k;
|
|
mmio_resource(dev, index++, RES_IN_KIB(base_k), RES_IN_KIB(size_k));
|
|
|
|
base_k += size_k;
|
|
size_k = 0x100000 - base_k;
|
|
reserved_ram_resource(dev, index++, RES_IN_KIB(base_k),
|
|
RES_IN_KIB(size_k));
|
|
|
|
/* 0x100000 -> cbmem_top - cacheable and usable */
|
|
base_k += size_k;
|
|
size_k = (unsigned long)cbmem_top() - base_k;
|
|
ram_resource(dev, index++, RES_IN_KIB(base_k), RES_IN_KIB(size_k));
|
|
|
|
/* cbmem_top -> 0xc0000000 - reserved */
|
|
base_k += size_k;
|
|
size_k = 0xc0000000 - base_k;
|
|
reserved_ram_resource(dev, index++, RES_IN_KIB(base_k),
|
|
RES_IN_KIB(size_k));
|
|
|
|
/* 0xc0000000 -> 4GiB is mmio. */
|
|
base_k += size_k;
|
|
size_k = 0x100000000ull - base_k;
|
|
mmio_resource(dev, index++, RES_IN_KIB(base_k), RES_IN_KIB(size_k));
|
|
}
|
|
|
|
static struct device_operations nc_ops = {
|
|
.read_resources = nc_read_resources,
|
|
.set_resources = pci_dev_set_resources,
|
|
.enable_resources = pci_dev_enable_resources,
|
|
};
|
|
|
|
static const struct pci_driver systemagent_driver __pci_driver = {
|
|
.ops = &nc_ops,
|
|
.vendor = PCI_VENDOR_ID_INTEL,
|
|
.device = QUARK_MC_DEVICE_ID
|
|
};
|