1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-04 23:35:18 +02:00

This patch is a rework of Adam Kaufman's Solaris patch

* flash.h:
  - add a license header
  - add system definitions
* flash_enable.c:
  - put io priviledge access in one single place
  - add includes required for Solaris.
* lbtable.c, flash_rom.c, 82802ab.c:
  - use MEM_DEV so it works on Solaris
* sst49lfxxxc.c, sharplhf00l04.c, sst_fwhub.c, 82802ab.c
  - drop unneeded include to sys/io.h
* Makefile
  - adapt to Solaris specifics.

Corresponding to flashrom svn r88 and coreboot v2 svn r2550.

Signed-off-by: Adam Kaufman <adam.kaufman@pinnacle.com>
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Adam Kaufman <adam.kaufman@pinnacle.com>
This commit is contained in:
Adam Kaufman
2007-02-06 19:47:50 +00:00
committed by Stefan Reinauer
parent 474230ad42
commit 064b1f23fa
9 changed files with 72 additions and 37 deletions

View File

@ -7,6 +7,7 @@
#include <string.h>
#include <errno.h>
#include <sys/mman.h>
#include "flash.h"
#include "../../src/include/boot/linuxbios_tables.h"
#include "debug.h"
@ -158,14 +159,14 @@ int linuxbios_init(void)
struct lb_record *rec, *last;
int fd;
fd = open("/dev/mem", O_RDONLY);
fd = open(MEM_DEV, O_RDONLY);
if (fd < 0) {
fprintf(stderr, "Can not open /dev/mem\n");
fprintf(stderr, "Can not access memory using " MEM_DEV "\n");
exit(-1);
}
low_1MB = mmap(0, 1024*1024, PROT_READ, MAP_SHARED, fd, 0x00000000);
if (low_1MB == ((void *) -1)) {
fprintf(stderr, "Can not mmap /dev/mem at %08lx errno(%d):%s\n",
fprintf(stderr, "Can not mmap " MEM_DEV " at %08lx errno(%d):%s\n",
0x00000000UL, errno, strerror(errno));
exit(-2);
}