Re: [U-Boot] [PATCH] Elimintated magic numbers for scratch register addresses

2012-02-15 Thread Robert Deliën
Is this patch approved?


From: u-boot-boun...@lists.denx.de [u-boot-boun...@lists.denx.de] on behalf of 
Robert Deliën [rob...@delien.nl]
Sent: 07 February 2012 10:15
To: Marek Vasut
Cc: u-boot@lists.denx.de
Subject: Re: [U-Boot] [PATCH] Elimintated magic numbers for scratch register
addresses

  + uint32_thw_digctl_writeonce;/* 0x060 */
  + uint32_treserved_writeonce[3];

 Just mark all this crap as reserved and be done with it.

If that's good enought, that will save me some work next time.

  + uint32_thw_digctl_dbg;  /* 0x0e0 */
  + uint32_treserved_hw_digctl_dbg[3];
  +
  + uint32_treserved2[4];

 Just like this :)

I copied it from how it's done in regs-power.h: Reserverd for whole
areas not being used, reserved_name[3] where one might expect to
find a set, clear and toggle register.

 Yep, looks fine.

 btw you don't have to send a cover letter for a single patch.

The cover letter was an accident. I'm still in the process of learning how git
send-email works. There's a lot of clever things in there, working for you if
you know how it works, but against you if you don't.

 Though this series
 should contain a subsequent patch that'll fix all usage of DIGCTL registers.

Nobody was using DICTL registers yet. I could have sent the magic address
repair (where macros are replaced with registers defined here) as a separate
patch but I didn't expeact that to be necessary.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] Elimintated magic numbers for scratch register addresses

2012-02-07 Thread Robert Deliën
  + uint32_thw_digctl_writeonce;/* 0x060 */
  + uint32_treserved_writeonce[3];
 
 Just mark all this crap as reserved and be done with it.

If that's good enought, that will save me some work next time. 

  + uint32_thw_digctl_dbg;  /* 0x0e0 */
  + uint32_treserved_hw_digctl_dbg[3];
  +
  + uint32_treserved2[4];
 
 Just like this :)

I copied it from how it's done in regs-power.h: Reserverd for whole
areas not being used, reserved_name[3] where one might expect to
find a set, clear and toggle register.

 Yep, looks fine.
 
 btw you don't have to send a cover letter for a single patch.

The cover letter was an accident. I'm still in the process of learning how git
send-email works. There's a lot of clever things in there, working for you if
you know how it works, but against you if you don't.

 Though this series
 should contain a subsequent patch that'll fix all usage of DIGCTL registers.

Nobody was using DICTL registers yet. I could have sent the magic address
repair (where macros are replaced with registers defined here) as a separate
patch but I didn't expeact that to be necessary.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] Elimintated magic numbers for scratch register addresses

2012-02-06 Thread Fabio Estevam
On 2/6/12, rob...@delien.nl rob...@delien.nl wrote:
 From: Robert Delien rob...@delien.nl

Put a commit message and a Signed-off-by line.

 ---
  arch/arm/cpu/arm926ejs/mx28/mx28.c   |8 +-
  arch/arm/include/asm/arch-mx28/imx-regs.h|1 +
  arch/arm/include/asm/arch-mx28/regs-digctl.h |  155
 ++
  3 files changed, 160 insertions(+), 4 deletions(-)
  create mode 100644 arch/arm/include/asm/arch-mx28/regs-digctl.h

 diff --git a/arch/arm/cpu/arm926ejs/mx28/mx28.c
 b/arch/arm/cpu/arm926ejs/mx28/mx28.c
 index 0e69193..9bfd83b 100644
 --- a/arch/arm/cpu/arm926ejs/mx28/mx28.c
 +++ b/arch/arm/cpu/arm926ejs/mx28/mx28.c
 @@ -261,14 +261,14 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char
 *mac)
  }
  #endif

 -#define  HW_DIGCTRL_SCRATCH0 0x8001c280
 -#define  HW_DIGCTRL_SCRATCH1 0x8001c290

Please remove HW_DIGCTRL_SCRATCHx from spl_mem_init.c as well.

Thanks,

Fabio Estevam
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] Elimintated magic numbers for scratch register addresses

2012-02-06 Thread Marek Vasut
 From: Robert Delien rob...@delien.nl
 
 ---
  arch/arm/cpu/arm926ejs/mx28/mx28.c   |8 +-
  arch/arm/include/asm/arch-mx28/imx-regs.h|1 +
  arch/arm/include/asm/arch-mx28/regs-digctl.h |  155
 ++ 3 files changed, 160 insertions(+), 4
 deletions(-)
  create mode 100644 arch/arm/include/asm/arch-mx28/regs-digctl.h
 
 diff --git a/arch/arm/cpu/arm926ejs/mx28/mx28.c
 b/arch/arm/cpu/arm926ejs/mx28/mx28.c index 0e69193..9bfd83b 100644
 --- a/arch/arm/cpu/arm926ejs/mx28/mx28.c
 +++ b/arch/arm/cpu/arm926ejs/mx28/mx28.c
 @@ -261,14 +261,14 @@ void imx_get_mac_from_fuse(int dev_id, unsigned char
 *mac) }
  #endif
 
 -#define  HW_DIGCTRL_SCRATCH0 0x8001c280
 -#define  HW_DIGCTRL_SCRATCH1 0x8001c290
  int mx28_dram_init(void)
  {
 + struct mx28_digctl_regs *digctl_regs =
 + (struct mx28_digctl_regs *)MXS_DIGCTL_BASE;
   uint32_t sz[2];
 
 - sz[0] = readl(HW_DIGCTRL_SCRATCH0);
 - sz[1] = readl(HW_DIGCTRL_SCRATCH1);
 + sz[0] = readl(digctl_regs-hw_digctl_scratch0);
 + sz[1] = readl(digctl_regs-hw_digctl_scratch1);
 
   if (sz[0] != sz[1]) {
   printf(MX28:\n
 diff --git a/arch/arm/include/asm/arch-mx28/imx-regs.h
 b/arch/arm/include/asm/arch-mx28/imx-regs.h index 9561b5e..f9e6c53 100644
 --- a/arch/arm/include/asm/arch-mx28/imx-regs.h
 +++ b/arch/arm/include/asm/arch-mx28/imx-regs.h
 @@ -27,6 +27,7 @@
  #include asm/arch/regs-base.h
  #include asm/arch/regs-bch.h
  #include asm/arch/regs-clkctrl.h
 +#include asm/arch/regs-digctl.h
  #include asm/arch/regs-gpmi.h
  #include asm/arch/regs-i2c.h
  #include asm/arch/regs-ocotp.h
 diff --git a/arch/arm/include/asm/arch-mx28/regs-digctl.h
 b/arch/arm/include/asm/arch-mx28/regs-digctl.h new file mode 100644
 index 000..9a63594
 --- /dev/null
 +++ b/arch/arm/include/asm/arch-mx28/regs-digctl.h
 @@ -0,0 +1,155 @@
 +/*
 + * Freescale i.MX28 DIGCTL Register Definitions
 + *
 + * Copyright (C) 2012 Robert Delien rob...@delien.nl
 + *
 + * 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 + *
 + */
 +
 +#ifndef __MX28_REGS_DIGCTL_H__
 +#define __MX28_REGS_DIGCTL_H__
 +
 +#include asm/arch/regs-common.h
 +
 +#ifndef  __ASSEMBLY__
 +struct mx28_digctl_regs {
 + mx28_reg_32(hw_digctl_ctrl) /* 0x000 */
 + mx28_reg_32(hw_digctl_status)   /* 0x010 */
 + mx28_reg_32(hw_digctl_hclkcount)/* 0x020 */
 + mx28_reg_32(hw_digctl_ramctrl)  /* 0x030 */
 + mx28_reg_32(hw_digctl_emi_status)   /* 0x040 */
 + mx28_reg_32(hw_digctl_read_margin)  /* 0x050 */
 + uint32_thw_digctl_writeonce;/* 0x060 */
 + uint32_treserved_writeonce[3];

Just mark all this crap as reserved and be done with it.

 + mx28_reg_32(hw_digctl_bist_ctl) /* 0x070 */
 + mx28_reg_32(hw_digctl_bist_status)  /* 0x080 */
 + uint32_thw_digctl_entropy;  /* 0x090 */
 + uint32_treserved_entropy[3];
 + uint32_thw_digctl_entropy_latched;  /* 0x0a0 */
 + uint32_treserved_entropy_latched[3];
 +
 + uint32_treserved1[4];
 +
 + mx28_reg_32(hw_digctl_microseconds) /* 0x0c0 */
 + uint32_thw_digctl_dbgrd;/* 0x0d0 */
 + uint32_treserved_hw_digctl_dbgrd[3];
 + uint32_thw_digctl_dbg;  /* 0x0e0 */
 + uint32_treserved_hw_digctl_dbg[3];
 +
 + uint32_treserved2[4];

Just like this :)

 +
 + mx28_reg_32(hw_digctl_usb_loopback) /* 0x100 */
 + mx28_reg_32(hw_digctl_ocram_status0)/* 0x110 */
 + mx28_reg_32(hw_digctl_ocram_status1)/* 0x120 */
 + mx28_reg_32(hw_digctl_ocram_status2)/* 0x130 */
 + mx28_reg_32(hw_digctl_ocram_status3)/* 0x140 */
 + mx28_reg_32(hw_digctl_ocram_status4)/* 0x150 */
 + mx28_reg_32(hw_digctl_ocram_status5)/* 0x160 */
 + mx28_reg_32(hw_digctl_ocram_status6)/* 0x170 */
 +