Re: [PATCH] ds1337 4/4

From: James Chapman
Date: Fri Apr 08 2005 - 12:50:26 EST


Ladislav Michl wrote:

On Fri, Apr 08, 2005 at 01:08:46PM +0200, Jean Delvare wrote:

Add support for DS1339. The only difference against DS1337 is Trickle
Charge register at address 10h, which is used to enable battery or gold
cap charging. Please note that value may vary for different batteries,
so it should be made module parameter. 0xaa is sane default and also
matches my board ;-)

"Sane default" is a non-sense here. A sane default is that loading a
real-time clock driver should not affect the battery at all IMHO.

Can you tell us more on that battery thing? I admit I don't exatcly get
what it is. Which type of battery are we talking about? Are there
similar drivers in the kernel tree already?


Sorry, I have no clue what devices are using it and what may come to
board designer's mind. This chip will be most likely used in embedded,
where every sane developer is expected to review drivers he is using.
Also in such situation driver is compiled staticaly. (And in ideal world
firmware (such as U-Boot, RedBoot, etc.) should set this register).


Sounds weird to me that loading a driver would enable charging of a
battery, and removing it wouldn't disable it. And since the driver
might not be removed, it would possibly make more sense to have an entry
in /sys to enable and disable this thing.


Disabling battery charge makes no sense.

If it causes more power to be drawn unnecessarily then battery charge should be enabled only when needed.

> The only reason I can think
about is when suspending device, so it is likely pm job. /sys entry
might help as well, but I do not see any point making driver more
complicated and bigger just to make someone else happy.

Why not add a new /sys entry for it? Is there a generic battery charge control /sys API?

Golden rule is: implement features as needed :)

But when adding code, try to cover all reasonable cases, otherwise we'll see patches from people trying to add platform specific ifdefs in here.

Also, arbitrarily picking one of the 6 possible charging modes just
because it matches your board is a bad idea. It looks like a value which
should be set on a per-board basis, rather than picked randomly by the
user, so as to avoid accidental hardware breakage.


Well free to provide that way, so far I'm the only user so I did what is
usefull for me [*]. Everyone is welcome to change it to more generic
way.

I agree with Jean. You should provide an API for this. Don't take shortcuts just because you were the first to support the chip. It'll be more useful to others if you provide a way to set a value per platform.

+/*
+ * DS1339 has Trickle Charge register at address 10h. During a multibyte
+ * access, when the address pointer reaches the end of the register space,
+ * it wraps around to location 00h.
+ * We read 17 bytes from device and compare first and last one. If they
+ * are same it is most likely DS1337 chip.
+ */
+static int ds1337_is_ds1339(struct i2c_client *client)
+{
+ char buf[17], addr = 0;
+ struct i2c_msg msg[2];
+ int result;
+
+ msg[0].addr = client->addr;
+ msg[0].flags = 0;
+ msg[0].len = 1;
+ msg[0].buf = &addr;
+
+ msg[1].addr = client->addr;
+ msg[1].flags = I2C_M_RD;
+ msg[1].len = sizeof(buf);
+ msg[1].buf = buf;
+
+ result = i2c_transfer(client->adapter, msg, 2);
+ if (result < 0) {
+ dev_err(&client->dev, "error reading data! %d\n", result);
+ return 0;
+ } else
+ return (buf[0] == buf[16]) ? 0 : 1;
+}

This will fail eventually. The first register is the seconds count, which
by definition is changing. I2C is slow, by the time you wrap over the
register range, the value could have changed. The datasheet explicitely
says that the register cache will refresh on address wrapping.

I was running test overnight and didn't meet any single case when this
happen. Perhaps device also needs to see start condition?

Just because it runs overnight doesn't mean there's no bug.

Also, 0x00 is a possible value for both the seconds count and the battery
register, so you could miss a DS1339 at times.

One possible check to start with would be on the value of the additional
register itself. It has only 7 possible values. (...)


Eh? Register is 8bit, that's 256 combinations.

Reserved bits have fixed values that you can test for.

(...) But of course it would be better if we could default to a DS1337
and find a way to identify the DS1339, rather than the (unsafe) other
way around.

I agree.

I also don't know what a DS1337 will answer for this
missing register. Maybe James can help?

I don't know. If I can find some time, I'll apply your patches and find out.


One possibility would be to start reading at 0x0E instead of 0x00,
because register 0x00 is the control register and is the only one which
will not change in our back as far as I can see. Oh, and the additional
battery register too. But this still doesn't sound like a bulletproof
method to me (we depend on the seconds and possibly minutes count
again). So it would be better to additionally perform the same tests
that were done on the non-wrapped registers for the regular DS1337
detection, but on the wrapped area.

The problem here is that all this will significantly increase the
detection delay.

That's probably overkill, see above.

Look, the only difference between ds1339 and ds1337 is Trickle Charge
register. We won't touch it by default and if anyone wants to use it, he
need to provide its value. In that case he also knows it is DS1339 and
also knows what battery is wired, so he knows charging current.

There are lots of i2c devices which differ only by one or two registers.
You are modifying this driver to report the new device so the device detection must be reliable.

The problem here is how to distinguish the difference between a read of ds1339's battery register 0x10 and a ds1337's register 0x00.


I hope it is also clear that without picking one "sane default" there is
no point to do any detection at all.

I don't understand what you are trying to say.

Yet another method would be to write a non-significant value to the
battery register, such as 0x80. If we can read it back then it has to be
a DS1339. But what effect will it have on the DS1337? I'd hope none,
but this better be verified. And in general I don't much like using
register writes in detection methods.


You will change register 00h.

Is writing 0x80 to register 0x10 valid for the ds1339?

This might be a good test but should be verified. According to ds1337's docs, writing 0x80 to register 0x00 would try to set a reserved bit so should read back 0 on a ds1337. But docs can be wrong and trying to set that bit might cause problems. I'll try to find out on my hardware.

/james


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/