diff options
| author | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-04-05 04:55:21 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-04-08 11:29:05 -0400 | 
| commit | 4a0930069b596ae27267a0e7cd44199e2270afa5 (patch) | |
| tree | 06242fd84a0a21e8316b6040ff530ed43a674116 /lib | |
| parent | da634ae3567cc2df435f8617dbc95db2d079bf11 (diff) | |
| download | olio-uboot-2014.01-4a0930069b596ae27267a0e7cd44199e2270afa5.tar.xz olio-uboot-2014.01-4a0930069b596ae27267a0e7cd44199e2270afa5.zip | |
omap_gpmc: add support for hw assisted BCH8
The kernel states:
---8<---
The OMAP3 GPMC hardware BCH engine computes remainder polynomials, it does not
provide automatic error location and correction: this step is implemented using
the BCH library.
--->8---
And we do so in u-boot.
This implementation uses the same layout for BCH8 but it is fix. The current
provided layout does only work with 64 Byte OOB.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Cc: Tom Rini <trini@ti.com>
Cc: Ilya Yanok <ilya.yanok@cogentembedded.com>
Cc: Scott Wood <scottwood@freescale.com>
Cc: Mansoor Ahamed <mansoor.ahamed@ti.com>
Cc: Thomas Weber <thomas.weber.linux@googlemail.com>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Makefile | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lib/Makefile b/lib/Makefile index 1bfd3ee12..5d71b80e2 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -27,7 +27,6 @@ LIB	= $(obj)libgeneric.o  ifndef CONFIG_SPL_BUILD  COBJS-$(CONFIG_ADDR_MAP) += addr_map.o -COBJS-$(CONFIG_BCH) += bch.o  COBJS-$(CONFIG_AES) += aes.o  COBJS-$(CONFIG_BZIP2) += bzlib.o  COBJS-$(CONFIG_BZIP2) += bzlib_crctable.o @@ -67,6 +66,7 @@ COBJS-$(CONFIG_SPL_NET_SUPPORT) += errno.o  COBJS-$(CONFIG_SPL_NET_SUPPORT) += hashtable.o  COBJS-$(CONFIG_SPL_NET_SUPPORT) += net_utils.o  endif +COBJS-$(CONFIG_BCH) += bch.o  COBJS-y += crc32.o  COBJS-y += ctype.o  COBJS-y += div64.o |