linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Dan Winkler <dantwinkler@yahoo.com>
To: linuxppc-embedded@lists.linuxppc.org
Subject: RPX Lite programming
Date: Thu, 24 Aug 2000 19:50:03 -0700 (PDT)	[thread overview]
Message-ID: <20000825025003.23151.qmail@web512.mail.yahoo.com> (raw)


Newbie alert!!!  I've just started developing on the
RPX lite board from embedded-planet.  I am currently
trying to write some i2c code that just reads the
temperature registers from the temperature sensor and
thermal monitor (TCN75).  I was wondering where
someone like myself could find some example code to
get me started.  I found the i2c driver from the
Motorola site and tried to modify it to acommidate my
needs but the first register I try to access it core
dumps.  Here is the only part of the code that get's
executed and the line on which it core dumps.  Looking
at the immr in memory, everything seems fine.  Any
suggestions?  Or better yet does anyone have any code
(very basic) that can get me past this first hurdle.
Thanks...

Dan Winkler

unsigned long GetIMMR(void)
{
    return 0xFA200000;
}

...init function
  /* MPC8xx internal register map */
  EPPC *immr = ( EPPC * )( GetIMMR() & 0xffff0000 );

  /* Get pointer to BD area on DPRAM */
  RTXBD *rtx = ( RTXBD * ) immr->udata.bd_ucode2;

  /*
   * Configure Port Pins
   */

  /*
   * PB27: I2CSDA -- I2C Serial Data In/Out
   * PB26: I2CSCL -- I2C Serial
   */

  immr->pb.pbpar |= (0x30);
  immr->pb.pbdir |= (0x30);
  immr->pb.pbodr |= (0x30);

=====


** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/

             reply	other threads:[~2000-08-25  2:50 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-08-25  2:50 Dan Winkler [this message]
2000-08-25 17:49 ` RPX Lite programming Matthew Locke
2000-08-26  0:25 ` Dan A. Dickey

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=20000825025003.23151.qmail@web512.mail.yahoo.com \
    --to=dantwinkler@yahoo.com \
    --cc=linuxppc-embedded@lists.linuxppc.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;
as well as URLs for NNTP newsgroup(s).