123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451 |
- /*
- * (C) Copyright 2008
- * Heiko Schocher, DENX Software Engineering, hs@denx.de.
- *
- * (C) Copyright 2011
- * Holger Brunck, Keymile GmbH Hannover, holger.brunck@keymile.com
- *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- */
- #include <common.h>
- #include <ioports.h>
- #include <command.h>
- #include <malloc.h>
- #include <hush.h>
- #include <net.h>
- #include <netdev.h>
- #include <asm/io.h>
- #include <linux/ctype.h>
- #include "common.h"
- #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
- #include <i2c.h>
- #endif
- static void i2c_write_start_seq(void);
- DECLARE_GLOBAL_DATA_PTR;
- /*
- * Set Keymile specific environment variables
- * Currently only some memory layout variables are calculated here
- * ... ------------------------------------------------
- * ... |@rootfsaddr |@pnvramaddr |@varaddr |@reserved |@END_OF_RAM
- * ... |<------------------- pram ------------------->|
- * ... ------------------------------------------------
- * @END_OF_RAM: denotes the RAM size
- * @pnvramaddr: Startadress of pseudo non volatile RAM in hex
- * @pram : preserved ram size in k
- * @varaddr : startadress for /var mounted into RAM
- */
- int set_km_env(void)
- {
- uchar buf[32];
- unsigned int pnvramaddr;
- unsigned int pram;
- unsigned int varaddr;
- unsigned int kernelmem;
- char *p;
- unsigned long rootfssize = 0;
- pnvramaddr = gd->ram_size - CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM
- - CONFIG_KM_PNVRAM;
- sprintf((char *)buf, "0x%x", pnvramaddr);
- setenv("pnvramaddr", (char *)buf);
- /* try to read rootfssize (ram image) from envrionment */
- p = getenv("rootfssize");
- if (p != NULL)
- strict_strtoul(p, 16, &rootfssize);
- pram = (rootfssize + CONFIG_KM_RESERVED_PRAM + CONFIG_KM_PHRAM +
- CONFIG_KM_PNVRAM) / 0x400;
- sprintf((char *)buf, "0x%x", pram);
- setenv("pram", (char *)buf);
- varaddr = gd->ram_size - CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM;
- sprintf((char *)buf, "0x%x", varaddr);
- setenv("varaddr", (char *)buf);
- kernelmem = gd->ram_size - 0x400 * pram;
- sprintf((char *)buf, "0x%x", kernelmem);
- setenv("kernelmem", (char *)buf);
- return 0;
- }
- #define DELAY_ABORT_SEQ 62 /* @200kHz 9 clocks = 44us, 62us is ok */
- #define DELAY_HALF_PERIOD (500 / (CONFIG_SYS_I2C_SPEED / 1000))
- #if !defined(CONFIG_MPC83xx)
- static void i2c_write_start_seq(void)
- {
- set_sda(1);
- udelay(DELAY_HALF_PERIOD);
- set_scl(1);
- udelay(DELAY_HALF_PERIOD);
- set_sda(0);
- udelay(DELAY_HALF_PERIOD);
- set_scl(0);
- udelay(DELAY_HALF_PERIOD);
- }
- /*
- * I2C is a synchronous protocol and resets of the processor in the middle
- * of an access can block the I2C Bus until a powerdown of the full unit is
- * done. This function toggles the SCL until the SCL and SCA line are
- * released, but max. 16 times, after this a I2C start-sequence is sent.
- * This I2C Deblocking mechanism was developed by Keymile in association
- * with Anatech and Atmel in 1998.
- */
- int i2c_make_abort(void)
- {
- #if defined(CONFIG_HARD_I2C) && !defined(MACH_TYPE_KM_KIRKWOOD)
- immap_t *immap = (immap_t *)CONFIG_SYS_IMMR ;
- i2c8260_t *i2c = (i2c8260_t *)&immap->im_i2c;
- /*
- * disable I2C controller first, otherwhise it thinks we want to
- * talk to the slave port...
- */
- clrbits_8(&i2c->i2c_i2mod, 0x01);
- /* Set the PortPins to GPIO */
- setports(1);
- #endif
- int scl_state = 0;
- int sda_state = 0;
- int i = 0;
- int ret = 0;
- if (!get_sda()) {
- ret = -1;
- while (i < 16) {
- i++;
- set_scl(0);
- udelay(DELAY_ABORT_SEQ);
- set_scl(1);
- udelay(DELAY_ABORT_SEQ);
- scl_state = get_scl();
- sda_state = get_sda();
- if (scl_state && sda_state) {
- ret = 0;
- printf("[INFO] i2c abort after %d clocks\n", i);
- break;
- }
- }
- }
- if (ret == 0)
- for (i = 0; i < 5; i++)
- i2c_write_start_seq();
- else
- printf("[ERROR] i2c abort failed\n");
- /* respect stop setup time */
- udelay(DELAY_ABORT_SEQ);
- set_scl(1);
- udelay(DELAY_ABORT_SEQ);
- set_sda(1);
- get_sda();
- #if defined(CONFIG_HARD_I2C)
- /* Set the PortPins back to use for I2C */
- setports(0);
- #endif
- return ret;
- }
- #endif /* !MPC83xx */
- #if defined(CONFIG_MPC83xx)
- static void i2c_write_start_seq(void)
- {
- struct fsl_i2c *dev;
- dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET);
- udelay(DELAY_ABORT_SEQ);
- out_8(&dev->cr, (I2C_CR_MEN | I2C_CR_MSTA));
- udelay(DELAY_ABORT_SEQ);
- out_8(&dev->cr, (I2C_CR_MEN));
- }
- int i2c_make_abort(void)
- {
- struct fsl_i2c *dev;
- dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET);
- uchar dummy;
- uchar last;
- int nbr_read = 0;
- int i = 0;
- int ret = 0;
- /* wait after each operation to finsh with a delay */
- out_8(&dev->cr, (I2C_CR_MSTA));
- udelay(DELAY_ABORT_SEQ);
- out_8(&dev->cr, (I2C_CR_MEN | I2C_CR_MSTA));
- udelay(DELAY_ABORT_SEQ);
- dummy = in_8(&dev->dr);
- udelay(DELAY_ABORT_SEQ);
- last = in_8(&dev->dr);
- nbr_read++;
- /*
- * do read until the last bit is 1, but stop if the full eeprom is
- * read.
- */
- while (((last & 0x01) != 0x01) &&
- (nbr_read < CONFIG_SYS_IVM_EEPROM_MAX_LEN)) {
- udelay(DELAY_ABORT_SEQ);
- last = in_8(&dev->dr);
- nbr_read++;
- }
- if ((last & 0x01) != 0x01)
- ret = -2;
- if ((last != 0xff) || (nbr_read > 1))
- printf("[INFO] i2c abort after %d bytes (0x%02x)\n",
- nbr_read, last);
- udelay(DELAY_ABORT_SEQ);
- out_8(&dev->cr, (I2C_CR_MEN));
- udelay(DELAY_ABORT_SEQ);
- /* clear status reg */
- out_8(&dev->sr, 0);
- for (i = 0; i < 5; i++)
- i2c_write_start_seq();
- if (ret != 0)
- printf("[ERROR] i2c abort failed after %d bytes (0x%02x)\n",
- nbr_read, last);
- return ret;
- }
- #endif
- /**
- * i2c_init_board - reset i2c bus. When the board is powercycled during a
- * bus transfer it might hang; for details see doc/I2C_Edge_Conditions.
- */
- void i2c_init_board(void)
- {
- /* Now run the AbortSequence() */
- i2c_make_abort();
- }
- #if !defined(MACH_TYPE_KM_KIRKWOOD)
- int ethernet_present(void)
- {
- struct km_bec_fpga *base =
- (struct km_bec_fpga *)CONFIG_SYS_KMBEC_FPGA_BASE;
- return in_8(&base->bprth) & PIGGY_PRESENT;
- }
- #endif
- int board_eth_init(bd_t *bis)
- {
- if (ethernet_present())
- return cpu_eth_init(bis);
- return -1;
- }
- /*
- * do_setboardid command
- * read out the board id and the hw key from the intventory EEPROM and set
- * this values as environment variables.
- */
- static int do_setboardid(cmd_tbl_t *cmdtp, int flag, int argc,
- char *const argv[])
- {
- unsigned char buf[32];
- char *p;
- p = get_local_var("IVM_BoardId");
- if (p == NULL) {
- printf("can't get the IVM_Boardid\n");
- return 1;
- }
- sprintf((char *)buf, "%s", p);
- setenv("boardid", (char *)buf);
- printf("set boardid=%s\n", buf);
- p = get_local_var("IVM_HWKey");
- if (p == NULL) {
- printf("can't get the IVM_HWKey\n");
- return 1;
- }
- sprintf((char *)buf, "%s", p);
- setenv("hwkey", (char *)buf);
- printf("set hwkey=%s\n", buf);
- printf("Execute manually saveenv for persistent storage.\n");
- return 0;
- }
- U_BOOT_CMD(km_setboardid, 1, 0, do_setboardid, "setboardid", "read out bid and "
- "hwkey from IVM and set in environment");
- /*
- * command km_checkbidhwk
- * if "boardid" and "hwkey" are not already set in the environment, do:
- * if a "boardIdListHex" exists in the environment:
- * - read ivm data for boardid and hwkey
- * - compare each entry of the boardIdListHex with the
- * IVM data:
- * if match:
- * set environment variables boardid, boardId,
- * hwkey, hwKey to the found values
- * both (boardid and boardId) are set because
- * they might be used differently in the
- * application and in the init scripts (?)
- * return 0 in case of match, 1 if not match or error
- */
- int do_checkboardidhwk(cmd_tbl_t *cmdtp, int flag, int argc,
- char *const argv[])
- {
- unsigned long ivmbid = 0, ivmhwkey = 0;
- unsigned long envbid = 0, envhwkey = 0;
- char *p;
- int verbose = argc > 1 && *argv[1] == 'v';
- int rc = 0;
- /*
- * first read out the real inventory values, these values are
- * already stored in the local hush variables
- */
- p = get_local_var("IVM_BoardId");
- if (p == NULL) {
- printf("can't get the IVM_Boardid\n");
- return 1;
- }
- rc = strict_strtoul(p, 16, &ivmbid);
- p = get_local_var("IVM_HWKey");
- if (p == NULL) {
- printf("can't get the IVM_HWKey\n");
- return 1;
- }
- rc = strict_strtoul(p, 16, &ivmhwkey);
- if (!ivmbid || !ivmhwkey) {
- printf("Error: IVM_BoardId and/or IVM_HWKey not set!\n");
- return rc;
- }
- /* now try to read values from environment if available */
- p = getenv("boardid");
- if (p != NULL)
- rc = strict_strtoul(p, 16, &envbid);
- p = getenv("hwkey");
- if (p != NULL)
- rc = strict_strtoul(p, 16, &envhwkey);
- if (rc != 0) {
- printf("strict_strtoul returns error: %d", rc);
- return rc;
- }
- if (!envbid || !envhwkey) {
- /*
- * BoardId/HWkey not available in the environment, so try the
- * environment variable for BoardId/HWkey list
- */
- char *bidhwklist = getenv("boardIdListHex");
- if (bidhwklist) {
- int found = 0;
- char *rest = bidhwklist;
- char *endp;
- if (verbose) {
- printf("IVM_BoardId: %ld, IVM_HWKey=%ld\n",
- ivmbid, ivmhwkey);
- printf("boardIdHwKeyList: %s\n",
- bidhwklist);
- }
- while (!found) {
- /* loop over each bid/hwkey pair in the list */
- unsigned long bid = 0;
- unsigned long hwkey = 0;
- while (*rest && !isxdigit(*rest))
- rest++;
- /*
- * use simple_strtoul because we need &end and
- * we know we got non numeric char at the end
- */
- bid = simple_strtoul(rest, &endp, 16);
- /* BoardId and HWkey are separated with a "_" */
- if (*endp == '_') {
- rest = endp + 1;
- /*
- * use simple_strtoul because we need
- * &end
- */
- hwkey = simple_strtoul(rest, &endp, 16);
- rest = endp;
- while (*rest && !isxdigit(*rest))
- rest++;
- }
- if ((!bid) || (!hwkey)) {
- /* end of list */
- break;
- }
- if (verbose) {
- printf("trying bid=0x%lX, hwkey=%ld\n",
- bid, hwkey);
- }
- /*
- * Compare the values of the found entry in the
- * list with the valid values which are stored
- * in the inventory eeprom. If they are equal
- * set the values in environment variables.
- */
- if ((bid == ivmbid) && (hwkey == ivmhwkey)) {
- char buf[10];
- found = 1;
- envbid = bid;
- envhwkey = hwkey;
- sprintf(buf, "%lx", bid);
- setenv("boardid", buf);
- sprintf(buf, "%lx", hwkey);
- setenv("hwkey", buf);
- }
- } /* end while( ! found ) */
- }
- }
- /* compare now the values */
- if ((ivmbid == envbid) && (ivmhwkey == envhwkey)) {
- printf("boardid=0x%3lX, hwkey=%ld\n", envbid, envhwkey);
- rc = 0; /* match */
- } else {
- printf("Error: env boardid=0x%3lX, hwkey=%ld\n", envbid,
- envhwkey);
- printf(" IVM bId=0x%3lX, hwKey=%ld\n", ivmbid, ivmhwkey);
- rc = 1; /* don't match */
- }
- return rc;
- }
- U_BOOT_CMD(km_checkbidhwk, 2, 0, do_checkboardidhwk,
- "check boardid and hwkey",
- "[v]\n - check environment parameter "\
- "\"boardIdListHex\" against stored boardid and hwkey "\
- "from the IVM\n v: verbose output"
- );
|