public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tetsuyuki Kobayashi <koba@kmckk.co.jp>
To: u-boot@lists.denx.de
Subject: [U-Boot] [RESEND PATCH v2 0/9] i2c for R-mobile
Date: Thu, 13 Sep 2012 16:03:28 +0900	[thread overview]
Message-ID: <50518540.2080601@kmckk.co.jp> (raw)
In-Reply-To: <CABMQnV+XCfMjvyDY0e3zUT29AaChx+B3XC9vxTOuuHwMNHFnBw@mail.gmail.com>

Iwamatu-san,
Thank you for review.

(2012/09/13 14:26), Nobuhiro Iwamatsu wrote:
> Hi,
>
> Thank you for this work.
> If you have a time, could you update sh_i2c using set/clrbits functions?
> these functions  is included in asm/io.h.
>
> For example, you can change from
> writeb(readb(&base->iccr) & ~SH_I2C_ICCR_ICE, &base->iccr);
> to
> clrbits_8(&base->iccr, SH_I2C_ICCR_ICE);

OK. I will try it.

  reply	other threads:[~2012-09-13  7:03 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-11  5:58 [U-Boot] [PATCH 0/3] i2c for R-mobile Tetsuyuki Kobayashi
2012-09-11  5:58 ` [U-Boot] [PATCH 1/3] i2c: sh_i2c.c: support iccl and icch extension Tetsuyuki Kobayashi
2012-09-12  1:50   ` Nobuhiro Iwamatsu
2012-09-11  5:58 ` [U-Boot] [PATCH 2/3] i2c: sh_i2c.c: correct BUSY bit define in ICSR Tetsuyuki Kobayashi
2012-09-12  1:49   ` Nobuhiro Iwamatsu
2012-09-11  5:58 ` [U-Boot] [PATCH 3/3] i2c: sh_i2c.c: adjust for SH73A0 Tetsuyuki Kobayashi
2012-09-12  1:50   ` Nobuhiro Iwamatsu
2012-09-12  8:20 ` [U-Boot] [PATCH v2 0/9] i2c for R-mobile Tetsuyuki Kobayashi
2012-09-12  8:20   ` [U-Boot] [PATCH v2 1/9] i2c: sh_i2c.c: support iccl and icch extension Tetsuyuki Kobayashi
2012-09-12  8:20   ` [U-Boot] [PATCH v2 2/9] i2c: sh_i2c.c: correct BUSY bit define in ICSR Tetsuyuki Kobayashi
2012-09-12  8:21   ` [U-Boot] [PATCH v2 3/9] i2c: sh_i2c.c: adjust for SH73A0 Tetsuyuki Kobayashi
2012-09-12  8:21   ` [U-Boot] [PATCH v2 4/9] i2c: sh_i2c.c: support I2C2, I2C3 and I2C4 Tetsuyuki Kobayashi
2012-09-13  5:13     ` Nobuhiro Iwamatsu
2012-09-12  8:21   ` [U-Boot] [PATCH v2 5/9] i2c: sh_i2c: enable i2c_probe Tetsuyuki Kobayashi
2012-09-12  8:21   ` [U-Boot] [PATCH v2 6/9] i2c: sh_i2c.c: check error in i2c_read and i2c_write Tetsuyuki Kobayashi
2012-09-13  5:17     ` Nobuhiro Iwamatsu
2012-09-12  8:21   ` [U-Boot] [PATCH v2 7/9] i2c: sh_i2c.c: remove unused function Tetsuyuki Kobayashi
2012-09-12  8:21   ` [U-Boot] [PATCH v2 8/9] arm: rmobile: kzm9g: enable I2C1 Tetsuyuki Kobayashi
2012-09-12  8:21   ` [U-Boot] [PATCH v2 9/9] arm: rmobile: kzm9g: enable I2C2 Tetsuyuki Kobayashi
2012-09-12  8:46 ` [U-Boot] [RESEND PATCH v2 0/9] i2c for R-mobile Tetsuyuki Kobayashi
2012-09-12  8:46   ` [U-Boot] [PATCH v2 1/9] i2c: sh_i2c.c: support iccl and icch extension Tetsuyuki Kobayashi
2012-09-13  5:16     ` Nobuhiro Iwamatsu
2012-09-12  8:46   ` [U-Boot] [PATCH v2 2/9] i2c: sh_i2c.c: correct BUSY bit define in ICSR Tetsuyuki Kobayashi
2012-09-12  8:46   ` [U-Boot] [PATCH v2 3/9] i2c: sh_i2c.c: adjust for SH73A0 Tetsuyuki Kobayashi
2012-09-12  8:46   ` [U-Boot] [PATCH v2 4/9] i2c: sh_i2c.c: support I2C2, I2C3 and I2C4 Tetsuyuki Kobayashi
2012-09-12  8:46   ` [U-Boot] [PATCH v2 5/9] i2c: sh_i2c: enable i2c_probe Tetsuyuki Kobayashi
2012-09-13  5:15     ` Nobuhiro Iwamatsu
2012-09-12  8:46   ` [U-Boot] [PATCH v2 6/9] i2c: sh_i2c.c: check error in i2c_read and i2c_write Tetsuyuki Kobayashi
2012-09-12  8:46   ` [U-Boot] [PATCH v2 7/9] i2c: sh_i2c.c: remove unused function Tetsuyuki Kobayashi
2012-09-13  5:17     ` Nobuhiro Iwamatsu
2012-09-12  8:46   ` [U-Boot] [PATCH v2 8/9] arm: rmobile: kzm9g: enable I2C1 Tetsuyuki Kobayashi
2012-09-13  5:18     ` Nobuhiro Iwamatsu
2012-09-12  8:46   ` [U-Boot] [PATCH v2 9/9] arm: rmobile: kzm9g: enable I2C2 Tetsuyuki Kobayashi
2012-09-13  5:27     ` Nobuhiro Iwamatsu
2012-09-13  5:26   ` [U-Boot] [RESEND PATCH v2 0/9] i2c for R-mobile Nobuhiro Iwamatsu
2012-09-13  7:03     ` Tetsuyuki Kobayashi [this message]
2012-09-14  5:07   ` [U-Boot] [PATCH v3 00/10] " Tetsuyuki Kobayashi
2012-09-14  5:07     ` [U-Boot] [PATCH v3 01/10] i2c: sh_i2c.c: support iccl and icch extension Tetsuyuki Kobayashi
2012-09-14  5:07     ` [U-Boot] [PATCH v3 02/10] i2c: sh_i2c.c: correct BUSY bit define in ICSR Tetsuyuki Kobayashi
2012-09-14  5:07     ` [U-Boot] [PATCH v3 03/10] i2c: sh_i2c.c: adjust for SH73A0 Tetsuyuki Kobayashi
2012-09-14  5:07     ` [U-Boot] [PATCH v3 04/10] i2c: sh_i2c.c: support I2C2, I2C3 and I2C4 Tetsuyuki Kobayashi
2012-09-14  5:08     ` [U-Boot] [PATCH v3 05/10] i2c: sh_i2c: enable i2c_probe Tetsuyuki Kobayashi
2012-09-14  5:08     ` [U-Boot] [PATCH v3 06/10] i2c: sh_i2c.c: check error in i2c_read and i2c_write Tetsuyuki Kobayashi
2012-09-14  5:08     ` [U-Boot] [PATCH v3 07/10] i2c: sh_i2c.c: remove unused function Tetsuyuki Kobayashi
2012-09-14  5:08     ` [U-Boot] [PATCH v3 08/10] arm: rmobile: kzm9g: enable I2C1 Tetsuyuki Kobayashi
2012-09-14  5:08     ` [U-Boot] [PATCH v3 09/10] arm: rmobile: kzm9g: enable I2C2 Tetsuyuki Kobayashi
2012-09-14  5:08     ` [U-Boot] [PATCH v3 10/10] i2c: sh_i2c: use setbits/clrbits macro Tetsuyuki Kobayashi
2012-09-18  0:57       ` Nobuhiro Iwamatsu
2012-10-16  3:55     ` [U-Boot] [PATCH v3 00/10] i2c for R-mobile Heiko Schocher

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=50518540.2080601@kmckk.co.jp \
    --to=koba@kmckk.co.jp \
    --cc=u-boot@lists.denx.de \
    /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