public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
From: Andre-John Mas <ajmas@sympatico.ca>
To: <ecos-discuss@sources.redhat.com>
Subject: Re: [ECOS] Reading flash config value from application
Date: Tue, 20 Jun 2006 22:26:00 -0000	[thread overview]
Message-ID: <20060620222612.YUVG16051.tomts20-srv.bellnexxia.net@smtp1.sympatico.ca> (raw)

Hi,

I am not sure what I am doing wrong, but CYGACC_CALL_IF_FLASH_CFG_OP is not finding the value (returning false). I am trying to read the "bootp_my_ip" value. Every time the card restarts the redboot sees the right values, so it doesn't seem to be an issue of data getting over-written.

Below are the modifications I made to network_support.c in the net/common package:

#include <cyg/hal/hal_if.h>

// For fetching the IP info from RedBoot
#include <cyg/hal/hal_if.h>
#ifndef CONFIG_IP
#define CONFIG_IP 5
#endif

typedef unsigned char ip_addr_t[4];

//
// taken from redboot ... net/net_io.c
//
static bool
flash_get_IP(char *id, ip_addr_t *val)
{
  ip_addr_t my_ip[4];
  int i;

  if (CYGACC_CALL_IF_FLASH_CFG_OP(CYGNUM_CALL_IF_FLASH_CFG_GET, id, &my_ip, CONFIG_IP))
  {
    diag_printf("flash_get_IP %s\n", my_ip);
    if (my_ip[0] != 0 || my_ip[1] != 0 ||
        my_ip[2] != 0 || my_ip[3] != 0) {
        // 'id' is set to something so let it override any static IP
        for (i=0; i<4; i++)
          (*val)[i] = my_ip[i];
        }
    }
    else
    {
      return false;
    }
}

and then in the init_all_networks_interfaces() function I have:

struct in_addr card_ip;

flash_get_IP("bootp_my_ip", card_ip.s_addr);

Any ideas what I might be doing wrong?

Andre



-- 
Before posting, please read the FAQ: http://ecos.sourceware.org/fom/ecos
and search the list archive: http://ecos.sourceware.org/ml/ecos-discuss

             reply	other threads:[~2006-06-20 22:26 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-06-20 22:26 Andre-John Mas [this message]
2006-06-21  2:15 ` Gary Thomas
  -- strict thread matches above, loose matches on Subject: below --
2006-06-16 23:23 André-John Mas
2006-06-17  1:41 ` Gary Thomas
     [not found]   ` <FAE7AB22-59C4-4C01-8C7E-AC3C86F6E3F1@sympatico.ca>
2006-06-17 21:25     ` Gary Thomas
2006-06-18  3:28       ` André-John Mas

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=20060620222612.YUVG16051.tomts20-srv.bellnexxia.net@smtp1.sympatico.ca \
    --to=ajmas@sympatico.ca \
    --cc=ajmas@bigfoot.com \
    --cc=ecos-discuss@sources.redhat.com \
    /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 read-only IMAP folder(s) and NNTP newsgroup(s).