From: Gabriel Gomiz <gomita@bblanca.com.ar>
To: linux-kernel@vger.kernel.org
Subject: NCR 7452/3 POS - Retail CMOS NVRAM Driver
Date: Wed, 15 Jan 2003 21:11:04 -0300 [thread overview]
Message-ID: <3E25F898.2010704@bblanca.com.ar> (raw)
I say Hi to the greatests hackers!
I'm trying to build a kernel module driver to be able to access the CMOS
NVRAM that the NCR 7452/3 POS (Point of Sale) has built-in on the
motherboard. All the information that I could get from the manufacturers
is that the memory works at I/O address 0x100. But later I found out
that you can configure the I/O address using switches on the motherboard
to one of the following ranges of addresses:
0x100-0x10F DEFAULT
0x120-0x12F
0x140-0x14F
0x160-0x16F
The memory chips that NCR uses are:
1) NEC D43256BGU - NCR POS Model 7452-1011
The chip is 256KB, but NCR says they use only 128KB
2) NEC D431000AGW - NCR POS Model 7453-1011
The chip is 1MB, but NCR says they use only 128KB
I've made a simple kernel module (based on drivers/char/nvram.c) to see
if I can _test_ the memory (to see if it is there and read/write some
bytes from 0x100 I/O Port) and I'm getting some confusing results.
In the end the module does the following:
#ifndef NVRAM_PORT
#define NVRAM_PORT(x) (0x100 + (x))
#endif
#define NVRAM_READ(addr) ({ \
outb_p((addr),NVRAM_PORT(0)); \
inb_p(NVRAM_PORT(1)); \
})
#define NVRAM_WRITE(val, addr) ({ \
outb_p((addr),NVRAM_PORT(0)); \
outb_p((val),NVRAM_PORT(1)); \
})
The questions are:
* Has anyone worked with this kind of NVRAM before?
* Do you know how can the memory be programmed? Maybe you can enlight me
with something... :)
I have some more details of the module and the tests I've been doing to
send if someone is interested.
OBS: If this message is considered highly off-topic, please can you
point me in the right direction to ask this questions? (Maybe linux-mtd???)
Many thanks in advance
--
.^. Gabriel Gomiz - Red Hat Certified Engineer (RHCE)
/V\
// \\
/( )\
^^-^^ s/Window[$s]/LINUX!!/g or die;
next reply other threads:[~2003-01-16 0:03 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-01-16 0:11 Gabriel Gomiz [this message]
2003-01-16 13:06 ` NCR 7452/3 POS - Retail CMOS NVRAM Driver Richard B. Johnson
2003-01-16 20:00 ` Gabriel Gomiz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3E25F898.2010704@bblanca.com.ar \
--to=gomita@bblanca.com.ar \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox