From: "Rafał Miłecki" <zajec5@gmail.com>
To: Arend van Spriel <arend@broadcom.com>
Cc: "linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>,
"John W. Linville" <linville@tuxdriver.com>,
"b43-dev@lists.infradead.org" <b43-dev@lists.infradead.org>
Subject: [RFC][WORTH IT?][PATCH] bcma: make use of crc8 lib
Date: Wed, 15 Jun 2011 20:29:58 +0200 [thread overview]
Message-ID: <BANLkTim3-sxkHmfiiwR-mLWfyUKxpSVBQA@mail.gmail.com> (raw)
In-Reply-To: <4DF8A0EF.5030702@broadcom.com>
W dniu 15 czerwca 2011 14:09 u?ytkownik Arend van Spriel
<arend@broadcom.com> napisa?:
> On 06/15/2011 01:53 PM, Rafa? Mi?ecki wrote:
>>
>> ?static u8 bcma_sprom_crc(const u16 *sprom)
>> ?{
>> - ? ? ? int word;
>> - ? ? ? u8 crc = 0xFF;
>> + ? ? ? u8 crc;
>> + ? ? ? u8 sprom2[SSB_SPROMSIZE_WORDS_R4 * 2 - 1];
>> + ? ? ? u8 table[CRC8_TABLE_SIZE];
>> + ? ? ? u16 word;
>>
>> + ? ? ? /* u16 to u8 */
>> ? ? ? ?for (word = 0; word< ?SSB_SPROMSIZE_WORDS_R4 - 1; word++) {
>> - ? ? ? ? ? ? ? crc = bcma_crc8(crc, sprom[word]& ?0x00FF);
>> - ? ? ? ? ? ? ? crc = bcma_crc8(crc, (sprom[word]& ?0xFF00)>> ?8);
>> + ? ? ? ? ? ? ? sprom2[word * 2] = sprom[word]& ?0x00FF;
>> + ? ? ? ? ? ? ? sprom2[(word * 2) + 1] = (sprom[word]& ?0xFF00)>> ?8;
>> ? ? ? ?}
>> - ? ? ? crc = bcma_crc8(crc, sprom[SSB_SPROMSIZE_WORDS_R4 - 1]& ?0x00FF);
>> + ? ? ? /* 127th byte */
>> + ? ? ? sprom2[(SSB_SPROMSIZE_WORDS_R4 * 2) - 2] =
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? sprom[SSB_SPROMSIZE_WORDS_R4 - 1]&
>> ?0x00FF;
>> +
>> + ? ? ? /* Prepare table, 0xAB is x^8 + x^7 + x^6 + x^4 + x^2 + 1 */
>> + ? ? ? crc8_populate_lsb(table, 0xAB);
>> +
>> + ? ? ? /* Calculate */
>> + ? ? ? crc = crc8(table, sprom2, (SSB_SPROMSIZE_WORDS_R4 * 2) - 1, 0xFF);
>> ? ? ? ?crc ^= 0xFF;
>>
>> ? ? ? ?return crc;
>
> You could do (I think):
>
> crc8_populate_lsb(table, 0xAB);
> for (word = 0; word< ?SSB_SPROMSIZE_WORDS_R4; word++) {
> ? ? ? ?u16 val = cpu_to_le16(sprom[word]);
> ? ? ? ?crc = crc8(table,&val, sizeof(u16), crc);
> }
Maybe not a perfect/optimal solution (crc8 focuses on tables, we do
double loop instead) but should work. Thanks for the tip.
--
Rafa?
prev parent reply other threads:[~2011-06-15 18:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-15 11:53 [RFC][WORTH IT?][PATCH] bcma: make use of crc8 lib Rafał Miłecki
[not found] ` <4DF8A0EF.5030702@broadcom.com>
2011-06-15 18:29 ` Rafał Miłecki [this message]
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=BANLkTim3-sxkHmfiiwR-mLWfyUKxpSVBQA@mail.gmail.com \
--to=zajec5@gmail.com \
--cc=arend@broadcom.com \
--cc=b43-dev@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.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