Re: [U-Boot] [PATCH 05/11] Blackfin: bf60x: support big cplb page

2013-02-17 Thread Bob Liu
On Thu, Feb 7, 2013 at 6:33 PM, Wolfgang Denk wrote: > Dear Sonic Zhang, > > In message <1360223258-6945-6-git-send-email-sonic@gmail.com> you wrote: >> From: Bob Liu >> >> Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for >&g

[U-Boot] [PATCH V3 07/12] Blackfin: spi: add bf6xx spi driver

2012-11-14 Thread Bob Liu
From: Scott Jiang Spi driver for bf60x is different from old one, so implement a new driver for it. Signed-off-by: Scott Jiang Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- .../blackfin/include/asm/mach-common/bits/spi6xx.h | 240 +++ drivers/spi/Makefile

[U-Boot] [PATCH V3 04/12] Blackfin: bf60x: support big cplb page

2012-11-14 Thread Bob Liu
Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for them. So that bf609-ezkit can use it's 128M memory. Signed-off-by: Bob Liu --- arch/blackfin/include/asm/cplb.h | 17 +++-- arch/blackfin/lib/board.c| 27 --- 2

[U-Boot] [PATCH V3 05/12] Blackfin: bf60x: add rsi/sdh support

2012-11-14 Thread Bob Liu
From: Sonic Zhang Add rsi/sdh support for bf60x. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/include/asm/mach-common/bits/sdh.h | 38 +++- drivers/mmc/bfin_sdh.c | 68 +- 2 files changed, 88 insertions(+), 18

[U-Boot] [PATCH V3 12/12] Blackfin: bf60x: add resume from hibernate

2012-11-14 Thread Bob Liu
From: Steven Miao Add Bf60x resume from hibernate support Signed-off-by: Steven Miao Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 44 ++ 1 file changed, 44 insertions(+) diff --git a/arch/blackfin/cpu

[U-Boot] [PATCH V3 09/12] Blackfin: bf60x: core support

2012-11-14 Thread Bob Liu
Core changed for supporting bf60x. Signed-off-by: Bob Liu --- arch/blackfin/cpu/cpu.c|4 +- arch/blackfin/cpu/initcode.c | 308 ++-- arch/blackfin/cpu/initcode.h | 52 ++ arch/blackfin/cpu/reset.c |6

[U-Boot] [PATCH V3 02/12] Blackfin: bf60x: add serial support

2012-11-14 Thread Bob Liu
From: Sonic Zhang Add serial for bf60x. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/serial.c | 81 +++--- arch/blackfin/cpu/serial.h | 222 ++-- arch/blackfin/cpu/serial1.h

[U-Boot] [PATCH V3 08/12] Blackfin: bf60x: add gpio support

2012-11-14 Thread Bob Liu
Signed-off-by: Bob Liu --- arch/blackfin/cpu/gpio.c| 36 +-- arch/blackfin/include/asm/gpio.h|2 +- arch/blackfin/include/asm/mach-bf609/gpio.h | 151 +++ 3 files changed, 181 insertions(+), 8 deletions(-) create mode 100644

[U-Boot] [PATCH V3 10/12] blackfin: bf609: add board support

2012-11-14 Thread Bob Liu
Board files for bf609-ezkit support. Signed-off-by: Bob Liu --- MAINTAINERS |1 + board/bf609-ezkit/Makefile| 55 board/bf609-ezkit/bf609-ezkit.c | 67 ++ boards.cfg|1 + include/configs/bf609-ezkit.h

[U-Boot] [PATCH V3 06/12] Blackfin: bf609-ezkit: implement soft switch

2012-11-14 Thread Bob Liu
From: Sonic Zhang Set up soft switch pins properly in board init code. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- board/bf609-ezkit/soft_switch.c | 169 +++ board/bf609-ezkit/soft_switch.h | 71 2 files changed, 240

[U-Boot] [PATCH V3 11/12] Blackfin: bf60x: add hw watchdog support

2012-11-14 Thread Bob Liu
Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 13 + arch/blackfin/cpu/start.S |2 ++ include/configs/bf609-ezkit.h |1 + 3 files changed, 16 insertions(+) diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu/initcode.c index 3bbdf22..6740e34

[U-Boot] [PATCH V3 03/12] Blackfin: bf60x: add dma support

2012-11-14 Thread Bob Liu
Add dma support for bf60x. Signed-off-by: Bob Liu --- arch/blackfin/include/asm/dma.h | 113 -- arch/blackfin/include/asm/mach-common/bits/dma.h | 48 - arch/blackfin/lib/string.c | 97 ++- 3 files changed

[U-Boot] [PATCH V3 00/12] Blackfin: add new processor and board

2012-11-14 Thread Bob Liu
Blackfin bf60x is a new processor for blackfin. This series patches add some basic support for it with a bf609-ezkit reference board. I got some suggestion in the former commit. Some of them are fixed, but some is still not clear. Since it's a long time ago, i send out V3 for feedback. Bo

Re: [U-Boot] [PATCH 01/13] Blackfin: BF60x: new processor header files

2012-09-05 Thread Bob Liu
Hi Wolfgang, Thank you for your review. On Sun, Sep 2, 2012 at 10:10 PM, Wolfgang Denk wrote: > Dear Bob Liu, > > In message <1345526833-10804-1-git-send-email-lliu...@gmail.com> you wrote: >> Add header files for blackfin new processor bf60x. >> >> Signed

[U-Boot] [PATCH 05/13] Blackfin: bf60x: add rsi/sdh support

2012-08-20 Thread Bob Liu
From: Sonic Zhang Add rsi/sdh support for bf60x. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/include/asm/mach-common/bits/sdh.h | 38 +++- drivers/mmc/bfin_sdh.c | 68 +- 2 files changed, 88 insertions(+), 18

[U-Boot] [PATCH 07/13] Blackfin: Spi: add bf6xx spi driver

2012-08-20 Thread Bob Liu
From: Scott Jiang Spi driver for bf60x is different from old one, so implement a new driver for it. Signed-off-by: Scott Jiang Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- .../blackfin/include/asm/mach-common/bits/spi6xx.h | 240 +++ drivers/spi/Makefile

[U-Boot] [PATCH 12/13] Blackfin: Bf60x: add resume from hibernate

2012-08-20 Thread Bob Liu
From: Steven Miao Add Bf60x resume from hibernate support Signed-off-by: Steven Miao Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 46 ++ 1 file changed, 46 insertions(+) diff --git a/arch/blackfin/cpu

[U-Boot] [PATCH 09/13] Blackfin: bf60x: core changes

2012-08-20 Thread Bob Liu
Core changes for supporting bf60x. Signed-off-by: Bob Liu --- arch/blackfin/cpu/cpu.c|4 +- arch/blackfin/cpu/initcode.c | 308 ++-- arch/blackfin/cpu/initcode.h | 52 ++ arch/blackfin/cpu/reset.c |6

[U-Boot] [PATCH 13/13] Blackfin: update license to Clear BSD license.

2012-08-20 Thread Bob Liu
From: Sonic Zhang Per the request from ADI Legal. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/Clear_BSD.txt| 33 arch/blackfin/cpu/bootcount.c |2 +- arch/blackfin/cpu/os_log.c

[U-Boot] [PATCH 10/13] Blackfin: bf609: add board files

2012-08-20 Thread Bob Liu
Board files for bf609-ezkit support. Signed-off-by: Bob Liu --- MAINTAINERS |1 + board/bf609-ezkit/Makefile| 55 board/bf609-ezkit/bf609-ezkit.c | 68 ++ boards.cfg|1 + include/configs/bf609-ezkit.h

[U-Boot] [PATCH 11/13] Blackfin: Bf60x: add hw watchdog support

2012-08-20 Thread Bob Liu
Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 13 + arch/blackfin/cpu/start.S |2 ++ include/configs/bf609-ezkit.h |1 + 3 files changed, 16 insertions(+) diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu/initcode.c index c4f1764..fc6e77b

[U-Boot] [PATCH 08/13] Blackfin: bf60x: add gpio support

2012-08-20 Thread Bob Liu
Signed-off-by: Bob Liu --- arch/blackfin/cpu/gpio.c| 36 +-- arch/blackfin/include/asm/gpio.h|2 +- arch/blackfin/include/asm/mach-bf609/gpio.h | 151 +++ 3 files changed, 181 insertions(+), 8 deletions(-) create mode 100644

[U-Boot] [PATCH 03/13] Blackfin: bf60x: add dma support

2012-08-20 Thread Bob Liu
Add dma support for bf60x. Signed-off-by: Bob Liu --- arch/blackfin/include/asm/dma.h | 113 -- arch/blackfin/include/asm/mach-common/bits/dma.h | 48 - arch/blackfin/lib/string.c | 97 ++- 3 files changed

[U-Boot] [PATCH 02/13] Blackfin: bf60x: add serial support

2012-08-20 Thread Bob Liu
From: Sonic Zhang Add serial for bf60x. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/serial.c | 81 --- arch/blackfin/cpu/serial.h | 222 ++--- arch/blackfin/cpu/serial1.h

[U-Boot] [PATCH 06/13] Blackfin: Bf609-ezkit: implement soft switch

2012-08-20 Thread Bob Liu
From: Sonic Zhang Set up soft switch pins properly in board init code. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- board/bf609-ezkit/soft_switch.c | 169 +++ board/bf609-ezkit/soft_switch.h | 71 2 files changed, 240

[U-Boot] [PATCH 04/13] Blackfin: Bf60x: support big cplb page

2012-08-20 Thread Bob Liu
Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for them. So that bf609-ezkit can use it's 128M memory. Signed-off-by: Bob Liu --- arch/blackfin/include/asm/cplb.h | 17 +++-- arch/blackfin/lib/board.c| 27 --- 2

Re: [U-Boot] [PATCH 16/16] Blackfin: update license to Clear BSD license.

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 1:12 PM, Mike Frysinger wrote: > obviously this is OK regardless of my opinion on it ;) > -mike Thank for all your review. -- Regards, --Bob ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-bo

Re: [U-Boot] [PATCH 13/16] Blackfin: Bf60x: add hw watchdog support

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 1:11 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:52 Bob Liu wrote: >> --- a/arch/blackfin/cpu/initcode.c >> +++ b/arch/blackfin/cpu/initcode.c >> >> if (CONFIG_BFIN_BOOT_MODE != BFIN_BOOT_BYPASS) { >>

Re: [U-Boot] [PATCH 10/16] Blackfin: Bf60x: Check card ready for each RSI command

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 1:05 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:49 Bob Liu wrote: >> Set up RSI data before sending RSI command if data is applicable. > > squash into the "Blackfin: rsi: add bf60x support" patch > -mik

Re: [U-Boot] [PATCH 09/16] Blackfin: Bf60x: add reset support

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 1:05 PM, Mike Frysinger wrote: > please squash into one of the "initial bf60x cpu support" patches > -mike Okay. -- Regards, --Bob ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 08/16] Blackfin: add more print info for Bf60x

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 1:04 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:47 Bob Liu wrote: >> --- a/arch/blackfin/lib/clocks.c >> +++ b/arch/blackfin/lib/clocks.c >> >> +u_long get_dclk(void) >> +{ >> +#ifndef CONFIG_BFIN_GET_DCLK >> +

Re: [U-Boot] [PATCH 07/16] Blackfin: Spi: add bf6xx spi driver

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 1:02 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:46 Bob Liu wrote: >> --- /dev/null >> +++ b/arch/blackfin/include/asm/mach-common/bits/spi6xx.h >> @@ -0,0 +1,240 @@ >> +/* >> + * Analog Devices SPI3 controller driver >

Re: [U-Boot] [PATCH 06/16] Blackfin: Bf609-ezkit: implement soft switch

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 12:59 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:45 Bob Liu wrote: >> --- a/board/bf609-ezkit/Makefile >> +++ b/board/bf609-ezkit/Makefile >> >> +COBJS-$(CONFIG_BFIN_SOFT_SWITCH) += soft_switch.o > > is there any reason

Re: [U-Boot] [PATCH 05/16] Blackfin: Paraflash: add support for bf609-ezkit

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 12:55 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:44 Bob Liu wrote: >> --- a/arch/blackfin/include/asm/mach-bf609/portmux.h >> +++ b/arch/blackfin/include/asm/mach-bf609/portmux.h > > this should be part of the initial commit of th

Re: [U-Boot] [PATCH 04/16] Blackfin: Rsi: add support for bf609-ezkit

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 12:52 PM, Mike Frysinger wrote: > 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-

Re: [U-Boot] [PATCH 03/16] Blackfin: Bf60x: support big cplb page

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 12:48 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:42 Bob Liu wrote: >> Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for >> them. So that bf609-ezkit can use it's 128M memory. > > "it's"

Re: [U-Boot] [PATCH 02/16] Blackfin: bf609-ezkit: new board port

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 12:41 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:41 Bob Liu wrote: >> arch/blackfin/cpu/initcode.c | 96 ++- >> arch/blackfin/cpu/initcode.h |9 ++ >> arch/b

Re: [U-Boot] [PATCH 01/16] Blackfin: BF60x: new processor port

2012-08-20 Thread Bob Liu
On Wed, Aug 8, 2012 at 12:39 PM, Mike Frysinger wrote: > On Tuesday 07 August 2012 04:07:40 Bob Liu wrote: >> From: Mike Frysinger >> >> Add basic support for blackfin new processor BF60x. > > i had always intended to clean & split this 1 change up, but nev

[U-Boot] [PATCH 15/16] Blackfin: Bf60x: add resume from hibernate

2012-08-07 Thread Bob Liu
From: Steven Miao Add Bf60x resume from hibernate support Signed-off-by: Steven Miao Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 46 ++ 1 file changed, 46 insertions(+) diff --git a/arch/blackfin/cpu

[U-Boot] [PATCH 14/16] Blackfin: setup SMC if user desires it

2012-08-07 Thread Bob Liu
From: Mike Frysinger The static memory controller is how people connect flashes to newer Blackfin processors, so add knobs for people to program settings if they so desire. Signed-off-by: Mike Frysinger Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.h

[U-Boot] [PATCH 16/16] Blackfin: update license to Clear BSD license.

2012-08-07 Thread Bob Liu
From: Sonic Zhang Per the request from ADI Legal. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/Clear_BSD.txt| 33 arch/blackfin/cpu/bootcount.c |2 +- arch/blackfin/cpu/os_log.c

[U-Boot] [PATCH 07/16] Blackfin: Spi: add bf6xx spi driver

2012-08-07 Thread Bob Liu
From: Scott Jiang Spi driver for bf60x is different from old one, so implement a new driver for it. Signed-off-by: Scott Jiang Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- .../blackfin/include/asm/mach-common/bits/spi6xx.h | 240 +++ drivers/spi/Makefile

[U-Boot] [PATCH 10/16] Blackfin: Bf60x: Check card ready for each RSI command

2012-08-07 Thread Bob Liu
From: Sonic Zhang Set up RSI data before sending RSI command if data is applicable. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- drivers/mmc/bfin_sdh.c | 23 --- 1 file changed, 20 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/bfin_sdh.c b/drivers/mmc

[U-Boot] [PATCH 05/16] Blackfin: Paraflash: add support for bf609-ezkit

2012-08-07 Thread Bob Liu
Add paraflash support for bf609-ezkit to board file. Signed-off-by: Bob Liu --- arch/blackfin/include/asm/mach-bf609/portmux.h |1 + board/bf609-ezkit/bf609-ezkit.c|8 +++--- include/configs/bf609-ezkit.h | 35 +++- include/configs

[U-Boot] [PATCH 04/16] Blackfin: Rsi: add support for bf609-ezkit

2012-08-07 Thread Bob Liu
From: Sonic Zhang Add support for bf609-ezkit to board file and mmc driver. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/include/asm/config-pre.h |4 ++ arch/blackfin/include/asm/mach-common/bits/dma.h | 47 +- arch/blackfin/include

[U-Boot] [PATCH 09/16] Blackfin: Bf60x: add reset support

2012-08-07 Thread Bob Liu
Signed-off-by: Bob Liu --- arch/blackfin/cpu/reset.c |4 1 file changed, 4 insertions(+) diff --git a/arch/blackfin/cpu/reset.c b/arch/blackfin/cpu/reset.c index 33df0fc..b6718d3 100644 --- a/arch/blackfin/cpu/reset.c +++ b/arch/blackfin/cpu/reset.c @@ -70,8 +70,12 @@ static void

[U-Boot] [PATCH 13/16] Blackfin: Bf60x: add hw watchdog support

2012-08-07 Thread Bob Liu
Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 14 ++ arch/blackfin/cpu/start.S |2 ++ include/configs/bf609-ezkit.h |1 + 3 files changed, 17 insertions(+) diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu/initcode.c index 3197c40..c68302f

[U-Boot] [PATCH 11/16] Blackfin: Bf60x: support clock init

2012-08-07 Thread Bob Liu
Add a way to set clock to values getting from config file bf609-ezkit.h Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 221 +- arch/blackfin/include/asm/mach-common/bits/cgu.h |2 + include/configs/bf609-ezkit.h| 35

[U-Boot] [PATCH 12/16] Blackfin: Bf60x: initcode: set up uart baud properly

2012-08-07 Thread Bob Liu
From: Sonic Zhang Set up uart baud properly for booting u-boot over UART Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c |8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/blackfin/cpu/initcode.c b/arch/blackfin/cpu

[U-Boot] [PATCH 02/16] Blackfin: bf609-ezkit: new board port

2012-08-07 Thread Bob Liu
From: Mike Frysinger Add basic support for new board bf609-ezkit. Signed-off-by: Mike Frysinger Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- arch/blackfin/cpu/initcode.c | 96 ++- arch/blackfin/cpu/initcode.h |9 ++ arch

[U-Boot] [PATCH 06/16] Blackfin: Bf609-ezkit: implement soft switch

2012-08-07 Thread Bob Liu
From: Sonic Zhang Set up soft switch pins properly in board init code. Signed-off-by: Sonic Zhang Signed-off-by: Bob Liu --- board/bf609-ezkit/Makefile |1 + board/bf609-ezkit/bf609-ezkit.c | 22 +++-- board/bf609-ezkit/soft_switch.c | 173

[U-Boot] [PATCH 03/16] Blackfin: Bf60x: support big cplb page

2012-08-07 Thread Bob Liu
Bf60x support 16K, 64K, 16M and 64M cplb pages, this patch add support for them. So that bf609-ezkit can use it's 128M memory. Signed-off-by: Bob Liu --- arch/blackfin/include/asm/cplb.h | 13 +- arch/blackfin/include/asm/mach-common/bits/mpu.h |6 -

[U-Boot] [PATCH 08/16] Blackfin: add more print info for Bf60x

2012-08-07 Thread Bob Liu
Add system0, system1, dclk and cgu print info for Bf60x. Signed-off-by: Bob Liu --- arch/blackfin/lib/board.c |6 ++ arch/blackfin/lib/clocks.c| 10 +- common/cmd_reginfo.c | 17 + include/configs/bf609-ezkit.h |1 + 4 files changed, 33

[U-Boot] usb showed wrong device count

2012-04-18 Thread Bob Liu
Hi folks, After patch: usb: Add support for multiple-LUN mass storage devices The usb device count isn't correct. bfin> usb start (Re)start USB... USB: scanning bus for devices... 1 USB Device(s) found scanning bus for storage devices... max USB Storage Device reached: 5 stopping 5 Stora

[U-Boot] [BUG] cfi_flash can't work correctly on latest uboot

2011-11-02 Thread Bob Liu
Hi, folks I think this patch make cfi_flash can't work correctly. http://git.denx.de/?p=u-boot.git;a=commitdiff;h=df4e813b72bf07d9026b00455f5e7dffd694ae48 --- a/drivers/mtd/cfi_flash.c +++ b/drivers/mtd/cfi_flash.c @@ -1426,6 +1426,11 @@ int flash_real_protect (flash_info_t * info, long sector, i

[U-Boot] [HELP] How to load a big image file(>40M)

2011-05-25 Thread Bob Liu
Hi, folks I got a problem while loading big kernel image(size > 40M) on ti pandaboard. - ## Booting kernel from Legacy Image at 8200 ... Image Name: Linux-2.6.39 Image Type: ARM Linux Kernel Image (uncompressed) Data Size:44882584 Bytes = 42.8 MiB Load A