
On Tuesday 07 August 2012 04:07:43 Bob Liu wrote:
--- a/arch/blackfin/include/asm/config-pre.h +++ b/arch/blackfin/include/asm/config-pre.h
#define BFIN_BOOT_16HOST_DMA 11 /* boot ldr from 16-bit host dma */ #define BFIN_BOOT_8HOST_DMA 12 /* boot ldr from 8-bit host dma */ #define BFIN_BOOT_NAND 13 /* boot ldr from nand flash */ +#define BFIN_BOOT_RSI_MASTER 14 /* boot ldr from rsi */ +#define BFIN_BOOT_LP_SLAVE 15 /* boot ldr from link port */
case BFIN_BOOT_16HOST_DMA: return "16bit dma";
case BFIN_BOOT_8HOST_DMA: return "8bit dma"; case BFIN_BOOT_NAND: return "nand flash";
- case BFIN_BOOT_RSI_MASTER: return "rsi master";
- case BFIN_BOOT_LP_SLAVE: return "link port slave"; default: return "INVALID"; }
}
seems like a change that should be by itself, or squashed into the "core bf60x support" patch
--- a/arch/blackfin/include/asm/mach-common/bits/dma.h +++ b/arch/blackfin/include/asm/mach-common/bits/dma.h
should be part of the "bf60x dma" patch
--- a/arch/blackfin/include/asm/mach-common/bits/sdh.h +++ b/arch/blackfin/include/asm/mach-common/bits/sdh.h --- a/drivers/mmc/bfin_sdh.c +++ b/drivers/mmc/bfin_sdh.c
these are about the only changes that should be in this patch, and the subject should be: Blackfin: rsi: add support for bf60x
--- a/board/bf609-ezkit/bf609-ezkit.c +++ b/board/bf609-ezkit/bf609-ezkit.c --- a/include/configs/bf609-ezkit.h +++ b/include/configs/bf609-ezkit.h
merge the rsi patch first, then squash this into the bf609-ezkit board patch -mike