Commit a7d9b5f0 authored by Stephen Boyd's avatar Stephen Boyd Committed by Greg Kroah-Hartman

firmware: coreboot: Remap RAM with memremap() instead of ioremap()

This is all system memory, so we shouldn't be mapping this all with
ioremap() as these aren't I/O regions. Instead, they're memory regions
so we should use memremap(). Pick MEMREMAP_WB so we can map memory from
RAM directly if that's possible, otherwise it falls back to
ioremap_cache() like is being done here already. This also nicely
silences the sparse warnings in this code and reduces the need to copy
anything around anymore.

Cc: Wei-Ning Huang <wnhuang@chromium.org>
Cc: Julius Werner <jwerner@chromium.org>
Cc: Brian Norris <briannorris@chromium.org>
Cc: Samuel Holland <samuel@sholland.org>
Signed-off-by: default avatarStephen Boyd <swboyd@chromium.org>
Reviewed-by: default avatarJulius Werner <jwerner@chromium.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a28aad66
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#define CB_DEV(d) container_of(d, struct coreboot_device, dev) #define CB_DEV(d) container_of(d, struct coreboot_device, dev)
#define CB_DRV(d) container_of(d, struct coreboot_driver, drv) #define CB_DRV(d) container_of(d, struct coreboot_driver, drv)
static struct coreboot_table_header __iomem *ptr_header; static struct coreboot_table_header *ptr_header;
static int coreboot_bus_match(struct device *dev, struct device_driver *drv) static int coreboot_bus_match(struct device *dev, struct device_driver *drv)
{ {
...@@ -94,18 +94,18 @@ void coreboot_driver_unregister(struct coreboot_driver *driver) ...@@ -94,18 +94,18 @@ void coreboot_driver_unregister(struct coreboot_driver *driver)
} }
EXPORT_SYMBOL(coreboot_driver_unregister); EXPORT_SYMBOL(coreboot_driver_unregister);
static int coreboot_table_init(struct device *dev, void __iomem *ptr) static int coreboot_table_init(struct device *dev, void *ptr)
{ {
int i, ret; int i, ret;
void *ptr_entry; void *ptr_entry;
struct coreboot_device *device; struct coreboot_device *device;
struct coreboot_table_entry entry; struct coreboot_table_entry *entry;
struct coreboot_table_header header; struct coreboot_table_header *header;
ptr_header = ptr; ptr_header = ptr;
memcpy_fromio(&header, ptr_header, sizeof(header)); header = ptr;
if (strncmp(header.signature, "LBIO", sizeof(header.signature))) { if (strncmp(header->signature, "LBIO", sizeof(header->signature))) {
pr_warn("coreboot_table: coreboot table missing or corrupt!\n"); pr_warn("coreboot_table: coreboot table missing or corrupt!\n");
ret = -ENODEV; ret = -ENODEV;
goto out; goto out;
...@@ -115,11 +115,11 @@ static int coreboot_table_init(struct device *dev, void __iomem *ptr) ...@@ -115,11 +115,11 @@ static int coreboot_table_init(struct device *dev, void __iomem *ptr)
if (ret) if (ret)
goto out; goto out;
ptr_entry = (void *)ptr_header + header.header_bytes; ptr_entry = ptr_header + header->header_bytes;
for (i = 0; i < header.table_entries; i++) { for (i = 0; i < header->table_entries; i++) {
memcpy_fromio(&entry, ptr_entry, sizeof(entry)); entry = ptr_entry;
device = kzalloc(sizeof(struct device) + entry.size, GFP_KERNEL); device = kzalloc(sizeof(struct device) + entry->size, GFP_KERNEL);
if (!device) { if (!device) {
ret = -ENOMEM; ret = -ENOMEM;
break; break;
...@@ -129,7 +129,7 @@ static int coreboot_table_init(struct device *dev, void __iomem *ptr) ...@@ -129,7 +129,7 @@ static int coreboot_table_init(struct device *dev, void __iomem *ptr)
device->dev.parent = dev; device->dev.parent = dev;
device->dev.bus = &coreboot_bus_type; device->dev.bus = &coreboot_bus_type;
device->dev.release = coreboot_device_release; device->dev.release = coreboot_device_release;
memcpy_fromio(&device->entry, ptr_entry, entry.size); memcpy(&device->entry, ptr_entry, entry->size);
ret = device_register(&device->dev); ret = device_register(&device->dev);
if (ret) { if (ret) {
...@@ -137,24 +137,23 @@ static int coreboot_table_init(struct device *dev, void __iomem *ptr) ...@@ -137,24 +137,23 @@ static int coreboot_table_init(struct device *dev, void __iomem *ptr)
break; break;
} }
ptr_entry += entry.size; ptr_entry += entry->size;
} }
if (ret) if (ret)
bus_unregister(&coreboot_bus_type); bus_unregister(&coreboot_bus_type);
out: out:
iounmap(ptr); memunmap(ptr);
return ret; return ret;
} }
static int coreboot_table_probe(struct platform_device *pdev) static int coreboot_table_probe(struct platform_device *pdev)
{ {
phys_addr_t phyaddr;
resource_size_t len; resource_size_t len;
struct coreboot_table_header __iomem *header = NULL; struct coreboot_table_header *header;
struct resource *res; struct resource *res;
void __iomem *ptr = NULL; void *ptr;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) if (!res)
...@@ -164,14 +163,13 @@ static int coreboot_table_probe(struct platform_device *pdev) ...@@ -164,14 +163,13 @@ static int coreboot_table_probe(struct platform_device *pdev)
if (!res->start || !len) if (!res->start || !len)
return -EINVAL; return -EINVAL;
phyaddr = res->start; header = memremap(res->start, sizeof(*header), MEMREMAP_WB);
header = ioremap_cache(phyaddr, sizeof(*header));
if (header == NULL) if (header == NULL)
return -ENOMEM; return -ENOMEM;
ptr = ioremap_cache(phyaddr, ptr = memremap(res->start, header->header_bytes + header->table_bytes,
header->header_bytes + header->table_bytes); MEMREMAP_WB);
iounmap(header); memunmap(header);
if (!ptr) if (!ptr)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment