Enable Ethernet interfaces for P4080DS Hypervisor Partitions

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Enable Ethernet interfaces for P4080DS Hypervisor Partitions

2,834 Views
daniel_ng
Contributor I

Hello,

Sorry for such a lengthy post but I wanted to give as much background info as possible.

My aim is to partition the the P4080DS system using the hypervisor and thereafter enable the Ethernet interfaces for each of the partitions to communicate with the host computer.

My configurations and build environment are as follows:

  1. Freescale Linux SDK v1.8 for QorIQ Processors
  2. P4080DS with 4GB RAM
  3. Partitioned P4080DS into 8 partitions.
    1. Each partitions having the fsl-image-core's linux as the guest OS.
    2. RAM - First partition: 1GB, the remainder 256MB.
    3. DMA:
      1. First partition: Untouched from default hv.dts, remaining partitions followed the partition 2 example.
      2. dw_dqrr_qportals - untouched.
    4. HV devices untouched
    5. Most of the devices listed in the given hv.dts remained with the first partition.
    6. Remaining partitions have at least one one Qman portal, one bman portal assigned.
  4. Uboot environment:
    1. bootargs config-addr=0xfe8900000 console=ttyS0,115200
    2. bootcmd 'bootm 0xfe8700000 - 0xfe8800000'
  5. Kernel - uImage-p4080ds.bin
  6. Ramdisk Filesystem - fsl-image-core-p4080ds.rootfs.ext2.gz.u-boot
  7. Hypervisor Image - hv.uImage
  8. Kernel DTB - Depending on the configuration i was trying to test, I flashed accordingly.
    1. uImage-p4080ds.dtb - When i tried to assign different Ethernet interfaces to different partitions
    2. uImage-p4080ds-usdpaa.dtb / uImage-p4080ds-usdpaa-shared-interfaces.dtb - when i tried the default hv.dtb
  9. RCW - SerDes 0xe where a total of 23 Gbps is available namely
    1. fm1-gb1, fm1-10g, fm2-gb2, fm2-gb3 & fm2-10g

Things I've gathered from the SDK Reference manual and various forum discussions (Please correct me if I am wrong):

  • Ethernet interfaces enabled are dependent on the RCW binary and the Kernel DTB flashed to the system.
  • Different Ethernet interfaces are linked to either fman0 or fman1.
  • Due to pin multiplexing reasons, not all Ethernet interfaces can be enabled at the same time thus the various RCW configurations.
  • I cannot assign different ethernet interfaces to different partitions due to hardware constraints of the P4080.
  • To achieve my aim, the best way (From what i read in the forums) would be to configure a shared mac interface for the partitions. This way i would then be able to have at least 5 ethernet interfaces working.

What I have managed to do is to enable all 5 Ethernet interfaces for the first partition and i could see them after booting into linux. I tried separating fman0 and fman1 Ethernet interfaces to two different partitions but only those in partition 1 can be seen.

I went back to try the two linux partition hv.dtb given by the SDK and flashed the uImage-p4080ds-usdpaa-shared-interfaces.dtb which had the shared mac dtb. I tried enabling the eth1(shared interface) by assigning the ipaddr and gateway seen in partition 2 but was unable to utilise it. Going into the shared mac dts file, i realised they only enabled ethernet@9 for shared mac usage. Should i have used another dtb file given?

Any ideas on how to get the ethernet interfaces working for each of the different partitions would be great.

Thank you in advance!

Regards,

Daniel

Labels (1)
0 Kudos
7 Replies

1,239 Views
yipingwang
NXP TechSupport
NXP TechSupport

Hello Daniel Ng,

Regarding shared MAC technology, there are two scenarios for users in Linux SDK, one is shared MAC between hypervisor partitions(communicating between different Linux partition through a single MAC device), the other is shared MAC between USDPAA and Linux, please don't confuse these two scenarios together. According to your description, it seems that what you need is the first scenario.

In Hypervisor environment, each FMAN can only been assigned to one partition, this causes Ethernet interfaces belonging to one FMAN only can be assigned to one partition, this is why we bring in shared MAC technology to share one DPAA Ethernet interface between two Linux partitions.

I recommend a document related with this topic DPAA Ethernet Interfaces Shared-MAC between two Linux Partitions under Hypervisor(Topaz) , which I created according to the requirement from the customer's project.

Please note, you need to modify Hypervisor device tree(hv.dtb) to implement shared MAC between Linux partitions, and use the device tree uImage-p4080ds.dtb in each partition.

If further assistance is needed, please feel free to let me know.


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,239 Views
daniel_ng
Contributor I

Hi Yiping,

The document you've provided is exactly what i hope to achieve. To make sure I didn't mix things up, I loaded the default hv.dtb file back onto the p4080ds system and followed the instructions stated in the document. However, when I got to the part where I had to "d. Apply the PCD rules with fmc:", i encountered the following error:

First try:

root@p4080ds:/etc/fmc/config/shared_mac# fmc -c hv2p_config_p4_shared_mac.xml -p hv2p_policy_shared_mac.xml -s hv2p_swparser_shared_mac.xml -a

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 17, inode_bitmap = 139266

ERR : Can't open file /tmp/fmc.bin

Second try:

root@p4080ds:/etc/fmc/config/shared_mac# fmc -c hv2p_config_p4_shared_mac.xml -p hv2p_policy_shared_mac.xml -s hv2p_swparser_shared_mac.xml -a

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 17, inode_bitmap = 139266

cpu0/0: ! CRITICAL FM-PCD Error [CPU00, drivers/net/ethernet/freescale/fman/Peripherals/FM/Pcd/fm_prs.c:357 FM_PCD_PrsLoadSw]: Invalid Handle;

cpu0/0: cpu0/0:

cpu0/0: ! MINOR FM Error [CPU00, drivers/net/ethernet/freescale/fman/src/wrapper/lnxwrp_ioctls_fm.c:3274 LnxwrpFmPcdIOCTL]: Invalid Handle;

cpu0/0: IOCTL FM PCDcpu0/0:

ERR : Invocation of FM_PCD_PrsLoadSw for fm0/pcd failed with error code 0x00010013

ERR : Can't open file /tmp/fmc.bin

What could be the issue here? I've attached the default hv.dts file that I am using. 

Also, I realise when trying to assign the ip addr for fm1-gb1 for my own hv.dtb file in partition one, the linux os crashes and shows a kernel panic message. What could be causing such a problem?

Thanks!

Regards,

Daniel

0 Kudos

1,239 Views
yipingwang
NXP TechSupport
NXP TechSupport

Hello Daniel,

It seems that there is problem with filesystem , would you please provide your u-boot and Kernel boot up log for this partition?

Thanks,

Yiping

1,239 Views
daniel_ng
Contributor I

yipingwang

Hi Yiping,

I was wondering whether was there any solution to the problem I'm facing with regards to the file system error.

Thanks!

Best regards,

Daniel Ng

0 Kudos

1,239 Views
yipingwang
NXP TechSupport
NXP TechSupport

Hello Daniel,

In your log, you could find the following error information about filesystem. It indicates that there is problem with the rootfs filesystem programmed to NOR Flash. Please program a new rootfs filesystem to NOR flash at 0xe9300000, please note that in the default Hypervisor environment, the size of filesystem cannot exceed 40M.

You could copy the rootfs filesystem from NOR Flash to RAM, and do a verification to boot it from RAM in the normal boot mode first, if no problem, then setup Hypervisor environment.

Error log:

RAMDISK: incomplete write (17034 != 32768)

write error

VFS: Mounted root (ext2 filesystem) readonly on device 1:0.

devtmpfs: mounted

Freeing unused kernel memory: 276K (c0855000 - c089a000)

INIT: version 2.88 booting

Starting udev

udevd[588]: starting version 182

Starting Bootlog daemon: bootlogd: cannot allocate pseudo tty: No such file or directory

  1. bootlogd.

Populating dev cache

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 17, inode_bitmap = 139266

ln: failed to create symbolic link '/tmp': Input/output error


Have a great day,
Yiping

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos

1,239 Views
daniel_ng
Contributor I

Hi Yiping,

It seems that the provided image for fsl-image-core rootfs filesystem under SDK v1.8 is corrupted. I went ahead to flash the rootfs from SDK v1.9 and it's working now. You might want to verify this on your end.

Thanks again Yiping!

Regards,

Daniel

0 Kudos

1,239 Views
daniel_ng
Contributor I

Thanks for your prompt reply, this are the boot logs.

U-boot:

U-Boot 2015.01QorIQ-SDK-V1.8+g6ba8eed (Dec 23 2015 - 12:59:14)

CPU0:  P4080E, Version: 3.0, (0x82080030)

Core:  e500mc, Version: 3.1, (0x80230031)

Clock Configuration:

       CPU0:1499.985 MHz, CPU1:1499.985 MHz, CPU2:1499.985 MHz, CPU3:1499.985 MHz,

       CPU4:1499.985 MHz, CPU5:1499.985 MHz, CPU6:1499.985 MHz, CPU7:1499.985 MHz,

       CCB:799.992 MHz,

       DDR:649.994 MHz (1299.987 MT/s data rate) (Asynchronous), LBC:99.999 MHz

       FMAN1: 599.994 MHz

       FMAN2: 599.994 MHz

       QMAN:  399.996 MHz

       PME:   599.994 MHz

L1:    D-cache 32 KiB enabled

       I-cache 32 KiB enabled

Reset Configuration Word (RCW):

       00000000: 105a0000 00000000 1e1e181e 0000cccc

       00000010: 3842440c 3c3c2000 de800000 e1000000

       00000020: 00000000 00000000 00000000 008b6000

       00000030: 00000000 00000000 00000000 00000000

Board: P4080DS, Sys ID: 0x17, Sys Ver: 0x01, FPGA Ver: 0x0c, vBank: 4

SERDES Reference Clocks: Bank1=100MHz Bank2=125MHz Bank3=125MHz

I2C:   ready

SPI:   ready

DRAM:  Initializing....using SPD

Detected UDIMM i-DIMM

Detected UDIMM i-DIMM

2 GiB left unmapped

Testing 0x00000000 - 0x7fffffff

Testing 0x80000000 - 0xffffffff

Remap DDR 2 GiB left unmapped

4 GiB (DDR3, 64-bit, CL=9, ECC on)

       DDR Controller Interleaving Mode: cache line

       DDR Chip-Select Interleaving Mode: CS0+CS1

POST memory PASSED

Flash: 128 MiB

L2:    128 KiB enabled

Corenet Platform Cache: 2 MiB enabled

SRIO1: disabled

SRIO2: disabled

MMC:   FSL_SDHC: 0

EEPROM: CRC mismatch (ca99e036 != ffffffff)

PCIe1: Root Complex, no link, regs @ 0xfe200000

PCIe1: Bus 00 - 00

PCIe2: disabled

PCIe3: Root Complex, x1 gen1, regs @ 0xfe202000

  02:00.0     - 1095:3132 - Mass storage controller

PCIe3: Bus 01 - 02

In:    serial

Out:   serial

Err:   serial

Net:   Fman1: Uploading microcode version 106.2.15

Phy 4 not found

PHY reset timed out

Fman2: Uploading microcode version 106.2.15

Phy 0 not found

PHY reset timed out

FM1@DTSEC2 [PRIME], FM1@TGEC1, FM2@DTSEC3, FM2@DTSEC4, FM2@TGEC1

Hit any key to stop autoboot:  0

WARNING: adjusting available memory to 30000000

## Booting kernel from Legacy Image at e8700000 ...

   Image Name:  

   Image Type:   PowerPC Linux Kernel Image (uncompressed)

   Data Size:    435104 Bytes = 424.9 KiB

   Load Address: 00000000

   Entry Point:  00000000

   Verifying Checksum ... OK

## Flattened Device Tree blob at e8800000

   Booting using the fdt blob at 0xe8800000

   Loading Kernel Image ... OK

   Loading Device Tree to 03fe2000, end 03fff45a ... OK

[0] =======================================

[0] Freescale Hypervisor 1.3-010

[0] Hypervisor command line: config-addr=0xfe8900000 console=ttyS0,115200

[0] malloc_init: using 14091 KiB at 0x7f1322b0 - 0x7fef4fff

[0] malloc_init: using 1060 KiB at 0x7fef6000 - 0x7fffefff

[0] dt_read_aliases: Alias pci1 points to non-existent /pcie@ffe201000

[0] assign_callback: device buffer-pool@16 in buffer-pool@16 not found

[0] assign_callback: device buffer-pool@17 in buffer-pool@17 not found

[0] assign_callback: device /fsl,dpaa/ethernet@16 in dpa-ethernet@16 not found

[0] hv_pamu_config_liodn: liodn 146 or device in use

[0] configure_liodn: config of liodn failed (rc=-259)

[0] hv_pamu_config_liodn: liodn 146 or device in use

[0] configure_liodn: config of liodn failed (rc=-259)

[0] hv_pamu_config_liodn: liodn 146 or device in use

[0] configure_liodn: config of liodn failed (rc=-259)

[0] Loading uImage from 0xfe9300000 to 0x1300000

[7] Loading uImage from 0xfe9300000 to 0x1300000

[7] Loading uImage from 0xfe8020000 to 0

[0] Loading uImage from 0xfe8020000 to 0

[7] branching to guest p2-linux, 1 cpus

[0] branching to guest p1-linux, 7 cpus

Partition 1:

Using CoreNet Generic machine description

Memory CAM mapping: 256/256/256 Mb, residual: 256Mb

Linux version 3.12.37-rt51-QorIQ-SDK-V1.8+gf488de6 (jng018@UbuntuSI9) (gcc version 4.9.2 (GCC) ) #1 SMP Fri Oct 2 14:58:34 SGT 2015

Found initrd at 0xc1300000:0xc353400b

No /devices/qman property 'fsl,qman-fqd', using memblock_alloc(0000000000400000)

No /devices/qman property 'fsl,qman-pfdr', using memblock_alloc(0000000002000000)

Qman ver:0a01,01,02,00

No /devices/bman property 'fsl,bman-fbpr', using memblock_alloc(0000000001000000)

Bman ver:0a02,01,00

pme: No /devices/pme property 'fsl,pme-pdsr', using memblock_alloc(0x0000000001000000)

pme: No /devices/pme property 'fsl,pme-sre', using memblock_alloc(0x0000000000a00000)

USDPAA region at 24000000:4000000(24000:4000), 1 TLB1 entries)

CPU maps initialized for 1 thread per core

CoreNet Generic board from Freescale Semiconductor

Zone ranges:

  DMA      [mem 0x00000000-0x2fffffff]

  Normal   empty

  HighMem  [mem 0x30000000-0x3fffffff]

Movable zone start for each node

Early memory node ranges

  node   0: [mem 0x00000000-0x3fffffff]

MMU: Allocated 1088 bytes of context maps for 255 contexts

PERCPU: Embedded 8 pages/cpu @c3d3c000 s9664 r8192 d14912 u32768

Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 260608

Kernel command line: usdpaa_mem=64M bportals=0 qportals=0

PID hash table entries: 4096 (order: 2, 16384 bytes)

Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)

Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)

Sorting __ex_table...

Memory: 782912K/1048576K available (6716K kernel code, 332K rwdata, 1800K rodata, 276K init, 452K bss, 265664K reserved, 262144K highmem)

Kernel virtual memory layout:

  * 0xfff5f000..0xfffff000  : fixmap

  * 0xffc00000..0xffe00000  : highmem PTEs

  * 0xffbfe000..0xffc00000  : early ioremap

  * 0xf1000000..0xffbfe000  : vmalloc & ioremap

Hierarchical RCU implementation.

  RCU debugfs-based tracing is enabled.

  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=7.

NR_IRQS:512 nr_irqs:512 16

clocksource: timebase mult[14000d1b] shift[24] registered

Console: colour dummy device 80x25

console [tty0] enabled

console [ttyEHV0] enabled

ehv-bc: registered console driver for byte channel 407

pid_max: default: 32768 minimum: 301

Mount-cache hash table entries: 512

fsl_rcpm_init: can't find the rcpm node.

e500 family performance monitor hardware support registered

Brought up 7 CPUs

devtmpfs: initialized

NET: Registered protocol family 16

Found FSL PCI host bridge at 0x0000000ffe200000. Firmware bus number: 0->0

PCI host bridge /devices/pci0  ranges:

MEM 0x0000000c00000000..0x0000000c1fffffff -> 0x00000000e0000000

  IO 0x0000000ff8000000..0x0000000ff800ffff -> 0x0000000000000000

/devices/pci0: PCICSRBAR @ 0xdf000000

/devices/pci0: extending DDR ATMU to cover MSIIR

/devices/pci0: Setting PCI inbound window greater than memory size

EDAC PCI0: Giving out device to module 'MPC85xx_edac' controller 'mpc85xx_pci_err': DEV 'ffe200000.pci0' (INTERRUPT)

MPC85xx_edac acquired irq 390 for PCI Err

MPC85xx_edac PCI err registered

Found FSL PCI host bridge at 0x0000000ffe202000. Firmware bus number: 0->1

PCI host bridge /devices/pci2  ranges:

MEM 0x0000000c40000000..0x0000000c5fffffff -> 0x00000000e0000000

  IO 0x0000000ff8020000..0x0000000ff802ffff -> 0x0000000000000000

/devices/pci2: PCICSRBAR @ 0xdf000000

/devices/pci2: extending DDR ATMU to cover MSIIR

/devices/pci2: Setting PCI inbound window greater than memory size

EDAC PCI1: Giving out device to module 'MPC85xx_edac' controller 'mpc85xx_pci_err': DEV 'ffe202000.pci2' (INTERRUPT)

MPC85xx_edac acquired irq 396 for PCI Err

MPC85xx_edac PCI err registered

fsl-pamu: fsl_pamu_init: could not find a PAMU node

PCI: Probing PCI hardware

fsl-pci ffe200000.pci0: PCI host bridge to bus 0000:00

pci_bus 0000:00: root bus resource [io  0xf1020000-0xf102ffff] (bus address [0x0000-0xffff])

pci_bus 0000:00: root bus resource [mem 0xc00000000-0xc1fffffff] (bus address [0xe0000000-0xffffffff])

pci_bus 0000:00: root bus resource [bus 00-ff]

pci 0000:00:00.0: ignoring class 0x0b2000 (doesn't match header type 01)

pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring

pci 0000:00:00.0: PCI bridge to [bus 01-ff]

fsl-pci ffe202000.pci2: PCI host bridge to bus 0001:02

pci_bus 0001:02: root bus resource [io  0xf1040000-0xf104ffff] (bus address [0x0000-0xffff])

pci_bus 0001:02: root bus resource [mem 0xc40000000-0xc5fffffff] (bus address [0xe0000000-0xffffffff])

pci_bus 0001:02: root bus resource [bus 02-ff]

pci 0001:02:00.0: ignoring class 0x0b2000 (doesn't match header type 01)

pci 0001:02:00.0: Primary bus is hard wired to 0

pci 0001:02:00.0: bridge configuration invalid ([bus 01-01]), reconfiguring

pci 0001:02:00.0: PCI bridge to [bus 03-ff]

pci 0000:00:00.0: PCI bridge to [bus 01]

pci 0000:00:00.0:   bridge window [io  0xf1020000-0xf102ffff]

pci 0000:00:00.0:   bridge window [mem 0xc00000000-0xc1fffffff]

pci 0001:02:00.0: BAR 9: can't assign mem pref (size 0x100000)

pci 0001:03:00.0: BAR 6: assigned [mem 0xc40080000-0xc400fffff pref]

pci 0001:02:00.0: PCI bridge to [bus 03]

pci 0001:02:00.0:   bridge window [io  0xf1040000-0xf104ffff]

pci 0001:02:00.0:   bridge window [mem 0xc40000000-0xc5fffffff]

pci_bus 0001:02: Some PCI device resources are unassigned, try booting with pci=realloc

bio: create slab <bio-0> at 0

vgaarb: loaded

SCSI subsystem initialized

usbcore: registered new interface driver usbfs

usbcore: registered new interface driver hub

usbcore: registered new device driver usb

pps_core: LinuxPPS API ver. 1 registered

pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

PTP clock support registered

EDAC MC: Ver: 3.0.0

Bman err interrupt handler present

Bman portal (shared) initialised, cpu 0

Bman portal (slave) initialised, cpu 1

Bman portal (slave) initialised, cpu 2

Bman portal (slave) initialised, cpu 3

Bman portal (slave) initialised, cpu 4

Bman portal (slave) initialised, cpu 5

Bman portal (slave) initialised, cpu 6

Bman portals initialised

Qman err interrupt handler present

qman_driver:portal_set_cpu(): iommu_domain_alloc() failed

Qman portal (shared) initialised, cpu 0

Qman portal (slave) initialised, cpu 1

Qman portal (slave) initialised, cpu 2

Qman portal (slave) initialised, cpu 3

Qman portal (slave) initialised, cpu 4

Qman portal (slave) initialised, cpu 5

Qman portal (slave) initialised, cpu 6

Qman portals initialised

Bman: BPID allocator includes range 32:16

Qman: FQID allocator includes range 256:128

Qman: FQID allocator includes range 32768:16384

Qman: CGRID allocator includes range 128:128

Qman: pool channel allocator includes range 41:7

Switched to clocksource timebase

NET: Registered protocol family 2

TCP established hash table entries: 8192 (order: 4, 65536 bytes)

TCP bind hash table entries: 8192 (order: 4, 65536 bytes)

TCP: Hash tables configured (established 8192 bind 8192)

TCP: reno registered

UDP hash table entries: 512 (order: 2, 16384 bytes)

UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)

NET: Registered protocol family 1

RPC: Registered named UNIX socket transport module.

RPC: Registered udp transport module.

RPC: Registered tcp transport module.

RPC: Registered tcp NFSv4.1 backchannel transport module.

Trying to unpack rootfs image as initramfs...

rootfs image is not initramfs (no cpio magic); looks like an initrd

Freeing initrd memory: 35024K (c1300000 - c3534000)

audit: initializing netlink socket (disabled)

type=2000 audit(0.212:1): initialized

bounce pool size: 64 pages

HugeTLB registered 1 MB page size, pre-allocated 0 pages

HugeTLB registered 4 MB page size, pre-allocated 0 pages

HugeTLB registered 16 MB page size, pre-allocated 0 pages

HugeTLB registered 64 MB page size, pre-allocated 0 pages

HugeTLB registered 256 MB page size, pre-allocated 0 pages

HugeTLB registered 1 GB page size, pre-allocated 0 pages

NFS: Registering the id_resolver key type

Key type id_resolver registered

Key type id_legacy registered

NTFS driver 2.1.30 [Flags: R/O].

jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.

msgmni has been set to 1214

io scheduler noop registered

io scheduler deadline registered

io scheduler cfq registered (default)

Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

ePAPR hypervisor byte channel driver

ehv-bc 197.byte-channel: registered /dev/ttyEHV0 for byte channel 407

Generic non-volatile memory driver v1.1

brd: module loaded

loop: module loaded

st: Version 20101219, fixed bufsize 32768, s/g segs 256

scsi0 : sata_sil24

scsi1 : sata_sil24

ata1: SATA max UDMA/100 host m128@0xc40000000 port 0xc40004000 irq 399

ata2: SATA max UDMA/100 host m128@0xc40000000 port 0xc40006000 irq 399

fe8000000.flash: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x002801

Amd/Fujitsu Extended Query Table at 0x0040

  Amd/Fujitsu Extended Query version 1.3.

number of CFI chips: 1

fsl_espi ffe110000.spi: master is unqueued, this is deprecated

m25p80 spi32766.0: s25sl12801 (16384 Kbytes)

4 ofpart partitions found on MTD device spi32766.0

Creating 4 MTD partitions on "spi32766.0":

0x000000000000-0x000000100000 : "u-boot"

0x000000100000-0x000000600000 : "kernel"

0x000000600000-0x000000700000 : "dtb"

0x000000700000-0x000001000000 : "file system"

fsl_espi ffe110000.spi: at 0xf10ae000 (irq = 325)

libphy: Fixed MDIO Bus: probed

platform mdio-mux-emi1.17: Driver mdio-mux-gpio requests probe deferral

platform mdio-mux-emi2.18: Driver mdio-mux-gpio requests probe deferral

libphy: Freescale PowerQUICC MII Bus: probed

libphy: Freescale XGMAC MDIO Bus: probed

could not find GUTS node

could not find GUTS node

Freescale FM module (Oct  2 2015:14:57:26), FMD API version 21.1.0

Freescale FM Ports module (Oct  2 2015:14:57:27)

fsl_mac: fsl_mac: FSL FMan MAC API based driver ()

fsl_mac ffe4e0000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe4e0000.ethernet: FMan MAC address: 00:04:9f:00:67:00

fsl_mac ffe4e2000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe4e2000.ethernet: FMan MAC address: 00:04:9f:00:67:01

cpu6/6: Applying 10G TX ECC workaround (10GMAC-A004) ...

cpu6/6: done.

fsl_mac ffe4f0000.ethernet: FMan XGEC version: 0x00010330

fsl_mac ffe4f0000.ethernet: FMan MAC address: 00:04:9f:00:67:04

fsl_mac ffe5e4000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe5e4000.ethernet: FMan MAC address: 00:04:9f:00:67:07

fsl_mac ffe5e6000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe5e6000.ethernet: FMan MAC address: 00:04:9f:00:67:08

cpu6/6: Applying 10G TX ECC workaround (10GMAC-A004) ...

cpu6/6: done.

fsl_mac ffe5f0000.ethernet: FMan XGEC version: 0x00010330

fsl_mac ffe5f0000.ethernet: FMan MAC address: 00:04:9f:00:67:09

fsl_dpa: FSL DPAA Ethernet driver ()

fsl_dpa: FSL DPAA Ethernet debugfs entries ()

fsl_advanced: FSL DPAA Advanced drivers: ()

fsl_proxy: FSL DPAA Proxy initialization driver ()

fsl_proxy-proxy dpa-ethernet.24: probed MAC device with MAC address: 00:04:9f:00:67:04

fsl_proxy-proxy dpa-ethernet.25: probed MAC device with MAC address: 00:04:9f:00:67:07

fsl_proxy-proxy dpa-ethernet.26: probed MAC device with MAC address: 00:04:9f:00:67:08

fsl_proxy-proxy dpa-ethernet.27: probed MAC device with MAC address: 00:04:9f:00:67:09

fsl_dpa_shared: FSL DPAA Shared Ethernet driver ()

fsl_dpa_shared: fsl_dpa_shared: Probed shared interface eth0

fsl_dpa_macless: FSL DPAA MACless Ethernet driver ()

fsl_dpa_macless: fsl_dpa_macless: Probed macless0 interface as eth1

fsl_oh: FSL FMan Offline Parsing port driver ()

fsl_oh dpa-fman0-oh.28: Found OH node handle compatible with fsl,dpa-oh

fsl_oh dpa-fman0-oh.28: Allocating 0 ingress frame queues duples

fsl_oh dpa-fman0-oh.28: OH port /devices/fman0/port@82000 has no buffer pool. Fragmentation will not be enabled

fsl_oh dpa-fman0-oh.28: OH port /devices/fman0/port@82000 enabled.

fsl_oh dpa-fman0-oh.28: Default egress frame queue: 105

fsl_oh dpa-fman0-oh.28: Default error frame queue: 104

fsl_oh dpa-fman0-oh.28: Initialized queues:

e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI

e1000: Copyright (c) 1999-2006 Intel Corporation.

e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k

e1000e: Copyright(c) 1999 - 2013 Intel Corporation.

ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver

ehci-pci: EHCI PCI platform driver

ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver

ohci-pci: OHCI PCI platform driver

fsl-ehci fsl-ehci.0: Freescale On-Chip EHCI Host Controller

fsl-ehci fsl-ehci.0: new USB bus registered, assigned bus number 1

fsl-ehci fsl-ehci.0: irq 328, io mem 0xffe210000

fsl-ehci fsl-ehci.0: USB 2.0 started, EHCI 1.00

hub 1-0:1.0: USB hub found

hub 1-0:1.0: 1 port detected

usbcore: registered new interface driver usb-storage

i2c /dev entries driver

mpc-i2c ffe118100.i2c: timeout 1000000 us

rtc-ds3232 0-0068: rtc core: registered ds3232 as rtc0

mpc-i2c ffe118000.i2c: timeout 1000000 us

Freescale(R) MPC85xx EDAC driver, (C) 2006 Montavista Software

EDAC MC0: Giving out device to 'MPC85xx_edac' 'mpc85xx_mc_err': DEV mpc85xx_mc_err

MPC85xx_edac acquired irq 346 for MC

MPC85xx_edac MC err registered

EDAC MC1: Giving out device to 'MPC85xx_edac' 'mpc85xx_mc_err': DEV mpc85xx_mc_err

MPC85xx_edac acquired irq 347 for MC

MPC85xx_edac MC err registered

sdhci: Secure Digital Host Controller Interface driver

sdhci: Copyright(c) Pierre Ossman

sdhci-pltfm: SDHCI platform and OF driver helper

mmc0: SDHCI controller on ffe114000.sdhc [ffe114000.sdhc] using DMA

platform caam_qi.0: Linux CAAM Queue I/F driver initialised

caam ffe300000.crypto: device ID = 0x0a10030000000000 (Era 4)

caam ffe300000.crypto: job rings = 4, qi = 1

caam algorithms registered in /proc/crypto

platform caam_qi.0: fsl,sec-v4.0 algorithms registered in /proc/crypto

caam_jr ffe301000.jr: registering rng-caam

caam ffe300000.crypto: fsl,sec-v4.0 algorithms registered in /proc/crypto

Freescale USDPAA process driver

Freescale USDPAA process IRQ driver

fsl-pme ffe316000.pme: ver: 0x00100201

Freescale pme2 db driver

Freescale pme2 scan driver

fsl-pme2-scan: device pme_scan registered

Freescale hypervisor management driver

fsl-hv: registered handler for doorbell 404

ipip: IPv4 over IPv4 tunneling driver

TCP: cubic registered

Initializing XFRM netlink socket

NET: Registered protocol family 10

sit: IPv6 over IPv4 tunneling driver

NET: Registered protocol family 17

NET: Registered protocol family 15

8021q: 802.1Q VLAN Support v1.8

Key type dns_resolver registered

libphy: mdio_mux: probed

libphy: mdio_mux: probed

mdio-mux-gpio mdio-mux-emi1.17: Version 1.0

libphy: mdio_mux: probed

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus 1.1: cannot get PHY at address 0

libphy: mdio_mux: probed

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus 1.3: cannot get PHY at address 4

mdio-mux-gpio mdio-mux-emi2.18: Version 1.0

fsl_generic: FSL DPAA Generic Ethernet driver ()

fsl_generic: FSL DPAA Ethernet debugfs entries ()

rtc-ds3232 0-0068: setting system clock to 2015-11-21 02:37:55 UTC (1448073475)

ata1: SATA link down (SStatus 0 SControl 0)

ata2: SATA link down (SStatus 0 SControl 0)

RAMDISK: gzip image found at block 0

RAMDISK: incomplete write (17034 != 32768)

write error

VFS: Mounted root (ext2 filesystem) readonly on device 1:0.

devtmpfs: mounted

Freeing unused kernel memory: 276K (c0855000 - c089a000)

INIT: version 2.88 booting

Starting udev

udevd[994]: starting version 182

Starting Bootlog daemon: bootlogd: cannot allocate pseudo tty: No such file or directory

bootlogd.

Populating dev cache

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 17, inode_bitmap = 139266

ln: failed to create symbolic link '/tmp': Input/output error

net.ipv4.conf.default.rp_filter = 0

net.ipv4.conf.all.rp_filter = 0

Running postinst /etc/rpm-postinsts/100-sysvinit-inittab...

Running postinst /etc/rpm-postinsts/101-inetutils-inetd...

Running postinst /etc/rpm-postinsts/102-debianutils...

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 16, inode_bitmap = 131074

Running postinst /etc/rpm-postinsts/103-util-linux-readprofile...

Running postinst /etc/rpm-postinsts/104-inetutils-telnetd...

Running postinst /etc/rpm-postinsts/105-inetutils-tftpd...

Running postinst /etc/rpm-postinsts/106-inetutils-ftpd...

update-rc.d: /etc/init.d/run-postinsts exists during rc.d purge (continuing)

Removing any system startup links for run-postinsts ...

  /etc/rcS.d/S99run-postinsts

INIT: Entering runlevel: 5

Configuring network interfaces... done.

Starting system message bus: dbus.

Starting OpenBSD Secure Shell server: sshd

  generating ssh RSA key...

  generating ssh ECDSA key...

  generating ssh DSA key...

  generating ssh ED25519 key...

done.

Starting network benchmark server: netserver.

Starting system log daemon...0

Starting kernel log daemon...0

Starting internet superserver: xinetd.

Stopping Bootlog daemon: bootlogd.

fsl-networking (QorIQ SDK) QorIQ-SDK-V1.8 p4080ds /dev/ttyEHV0

p4080ds login: root

root@p4080ds:~#

Using CoreNet Generic machine description

Memory CAM mapping: 256/256/256 Mb, residual: 256Mb

Linux version 3.12.37-rt51-QorIQ-SDK-V1.8+gf488de6 (jng018@UbuntuSI9) (gcc version 4.9.2 (GCC) ) #1 SMP Fri Oct 2 14:58:34 SGT 2015

Found initrd at 0xc1300000:0xc353400b

No /devices/qman property 'fsl,qman-fqd', using memblock_alloc(0000000000400000)

No /devices/qman property 'fsl,qman-pfdr', using memblock_alloc(0000000002000000)

Qman ver:0a01,01,02,00

No /devices/bman property 'fsl,bman-fbpr', using memblock_alloc(0000000001000000)

Bman ver:0a02,01,00

pme: No /devices/pme property 'fsl,pme-pdsr', using memblock_alloc(0x0000000001000000)

pme: No /devices/pme property 'fsl,pme-sre', using memblock_alloc(0x0000000000a00000)

USDPAA region at 24000000:4000000(24000:4000), 1 TLB1 entries)

CPU maps initialized for 1 thread per core

CoreNet Generic board from Freescale Semiconductor

Zone ranges:

  DMA      [mem 0x00000000-0x2fffffff]

  Normal   empty

  HighMem  [mem 0x30000000-0x3fffffff]

Movable zone start for each node

Early memory node ranges

  node   0: [mem 0x00000000-0x3fffffff]

MMU: Allocated 1088 bytes of context maps for 255 contexts

PERCPU: Embedded 8 pages/cpu @c3d3c000 s9664 r8192 d14912 u32768

Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 260608

Kernel command line: usdpaa_mem=64M bportals=0 qportals=0

PID hash table entries: 4096 (order: 2, 16384 bytes)

Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)

Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)

Sorting __ex_table...

Memory: 782912K/1048576K available (6716K kernel code, 332K rwdata, 1800K rodata, 276K init, 452K bss, 265664K reserved, 262144K highmem)

Kernel virtual memory layout:

  * 0xfff5f000..0xfffff000  : fixmap

  * 0xffc00000..0xffe00000  : highmem PTEs

  * 0xffbfe000..0xffc00000  : early ioremap

  * 0xf1000000..0xffbfe000  : vmalloc & ioremap

Hierarchical RCU implementation.

  RCU debugfs-based tracing is enabled.

  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=7.

NR_IRQS:512 nr_irqs:512 16

clocksource: timebase mult[14000d1b] shift[24] registered

Console: colour dummy device 80x25

console [tty0] enabled

console [ttyEHV0] enabled

ehv-bc: registered console driver for byte channel 407

pid_max: default: 32768 minimum: 301

Mount-cache hash table entries: 512

fsl_rcpm_init: can't find the rcpm node.

e500 family performance monitor hardware support registered

Brought up 7 CPUs

devtmpfs: initialized

NET: Registered protocol family 16

Found FSL PCI host bridge at 0x0000000ffe200000. Firmware bus number: 0->0

PCI host bridge /devices/pci0  ranges:

MEM 0x0000000c00000000..0x0000000c1fffffff -> 0x00000000e0000000

  IO 0x0000000ff8000000..0x0000000ff800ffff -> 0x0000000000000000

/devices/pci0: PCICSRBAR @ 0xdf000000

/devices/pci0: extending DDR ATMU to cover MSIIR

/devices/pci0: Setting PCI inbound window greater than memory size

EDAC PCI0: Giving out device to module 'MPC85xx_edac' controller 'mpc85xx_pci_err': DEV 'ffe200000.pci0' (INTERRUPT)

MPC85xx_edac acquired irq 390 for PCI Err

MPC85xx_edac PCI err registered

Found FSL PCI host bridge at 0x0000000ffe202000. Firmware bus number: 0->1

PCI host bridge /devices/pci2  ranges:

MEM 0x0000000c40000000..0x0000000c5fffffff -> 0x00000000e0000000

  IO 0x0000000ff8020000..0x0000000ff802ffff -> 0x0000000000000000

/devices/pci2: PCICSRBAR @ 0xdf000000

/devices/pci2: extending DDR ATMU to cover MSIIR

/devices/pci2: Setting PCI inbound window greater than memory size

EDAC PCI1: Giving out device to module 'MPC85xx_edac' controller 'mpc85xx_pci_err': DEV 'ffe202000.pci2' (INTERRUPT)

MPC85xx_edac acquired irq 396 for PCI Err

MPC85xx_edac PCI err registered

fsl-pamu: fsl_pamu_init: could not find a PAMU node

PCI: Probing PCI hardware

fsl-pci ffe200000.pci0: PCI host bridge to bus 0000:00

pci_bus 0000:00: root bus resource [io  0xf1020000-0xf102ffff] (bus address [0x0000-0xffff])

pci_bus 0000:00: root bus resource [mem 0xc00000000-0xc1fffffff] (bus address [0xe0000000-0xffffffff])

pci_bus 0000:00: root bus resource [bus 00-ff]

pci 0000:00:00.0: ignoring class 0x0b2000 (doesn't match header type 01)

pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring

pci 0000:00:00.0: PCI bridge to [bus 01-ff]

fsl-pci ffe202000.pci2: PCI host bridge to bus 0001:02

pci_bus 0001:02: root bus resource [io  0xf1040000-0xf104ffff] (bus address [0x0000-0xffff])

pci_bus 0001:02: root bus resource [mem 0xc40000000-0xc5fffffff] (bus address [0xe0000000-0xffffffff])

pci_bus 0001:02: root bus resource [bus 02-ff]

pci 0001:02:00.0: ignoring class 0x0b2000 (doesn't match header type 01)

pci 0001:02:00.0: Primary bus is hard wired to 0

pci 0001:02:00.0: bridge configuration invalid ([bus 01-01]), reconfiguring

pci 0001:02:00.0: PCI bridge to [bus 03-ff]

pci 0000:00:00.0: PCI bridge to [bus 01]

pci 0000:00:00.0:   bridge window [io  0xf1020000-0xf102ffff]

pci 0000:00:00.0:   bridge window [mem 0xc00000000-0xc1fffffff]

pci 0001:02:00.0: BAR 9: can't assign mem pref (size 0x100000)

pci 0001:03:00.0: BAR 6: assigned [mem 0xc40080000-0xc400fffff pref]

pci 0001:02:00.0: PCI bridge to [bus 03]

pci 0001:02:00.0:   bridge window [io  0xf1040000-0xf104ffff]

pci 0001:02:00.0:   bridge window [mem 0xc40000000-0xc5fffffff]

pci_bus 0001:02: Some PCI device resources are unassigned, try booting with pci=realloc

bio: create slab <bio-0> at 0

vgaarb: loaded

SCSI subsystem initialized

usbcore: registered new interface driver usbfs

usbcore: registered new interface driver hub

usbcore: registered new device driver usb

pps_core: LinuxPPS API ver. 1 registered

pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

PTP clock support registered

EDAC MC: Ver: 3.0.0

Bman err interrupt handler present

Bman portal (shared) initialised, cpu 0

Bman portal (slave) initialised, cpu 1

Bman portal (slave) initialised, cpu 2

Bman portal (slave) initialised, cpu 3

Bman portal (slave) initialised, cpu 4

Bman portal (slave) initialised, cpu 5

Bman portal (slave) initialised, cpu 6

Bman portals initialised

Qman err interrupt handler present

qman_driver:portal_set_cpu(): iommu_domain_alloc() failed

Qman portal (shared) initialised, cpu 0

Qman portal (slave) initialised, cpu 1

Qman portal (slave) initialised, cpu 2

Qman portal (slave) initialised, cpu 3

Qman portal (slave) initialised, cpu 4

Qman portal (slave) initialised, cpu 5

Qman portal (slave) initialised, cpu 6

Qman portals initialised

Bman: BPID allocator includes range 32:16

Qman: FQID allocator includes range 256:128

Qman: FQID allocator includes range 32768:16384

Qman: CGRID allocator includes range 128:128

Qman: pool channel allocator includes range 41:7

Switched to clocksource timebase

NET: Registered protocol family 2

TCP established hash table entries: 8192 (order: 4, 65536 bytes)

TCP bind hash table entries: 8192 (order: 4, 65536 bytes)

TCP: Hash tables configured (established 8192 bind 8192)

TCP: reno registered

UDP hash table entries: 512 (order: 2, 16384 bytes)

UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)

NET: Registered protocol family 1

RPC: Registered named UNIX socket transport module.

RPC: Registered udp transport module.

RPC: Registered tcp transport module.

RPC: Registered tcp NFSv4.1 backchannel transport module.

Trying to unpack rootfs image as initramfs...

rootfs image is not initramfs (no cpio magic); looks like an initrd

Freeing initrd memory: 35024K (c1300000 - c3534000)

audit: initializing netlink socket (disabled)

type=2000 audit(0.212:1): initialized

bounce pool size: 64 pages

HugeTLB registered 1 MB page size, pre-allocated 0 pages

HugeTLB registered 4 MB page size, pre-allocated 0 pages

HugeTLB registered 16 MB page size, pre-allocated 0 pages

HugeTLB registered 64 MB page size, pre-allocated 0 pages

HugeTLB registered 256 MB page size, pre-allocated 0 pages

HugeTLB registered 1 GB page size, pre-allocated 0 pages

NFS: Registering the id_resolver key type

Key type id_resolver registered

Key type id_legacy registered

NTFS driver 2.1.30 [Flags: R/O].

jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.

msgmni has been set to 1214

io scheduler noop registered

io scheduler deadline registered

io scheduler cfq registered (default)

Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

ePAPR hypervisor byte channel driver

ehv-bc 197.byte-channel: registered /dev/ttyEHV0 for byte channel 407

Generic non-volatile memory driver v1.1

brd: module loaded

loop: module loaded

st: Version 20101219, fixed bufsize 32768, s/g segs 256

scsi0 : sata_sil24

scsi1 : sata_sil24

ata1: SATA max UDMA/100 host m128@0xc40000000 port 0xc40004000 irq 399

ata2: SATA max UDMA/100 host m128@0xc40000000 port 0xc40006000 irq 399

fe8000000.flash: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x002801

Amd/Fujitsu Extended Query Table at 0x0040

  Amd/Fujitsu Extended Query version 1.3.

number of CFI chips: 1

fsl_espi ffe110000.spi: master is unqueued, this is deprecated

m25p80 spi32766.0: s25sl12801 (16384 Kbytes)

4 ofpart partitions found on MTD device spi32766.0

Creating 4 MTD partitions on "spi32766.0":

0x000000000000-0x000000100000 : "u-boot"

0x000000100000-0x000000600000 : "kernel"

0x000000600000-0x000000700000 : "dtb"

0x000000700000-0x000001000000 : "file system"

fsl_espi ffe110000.spi: at 0xf10ae000 (irq = 325)

libphy: Fixed MDIO Bus: probed

platform mdio-mux-emi1.17: Driver mdio-mux-gpio requests probe deferral

platform mdio-mux-emi2.18: Driver mdio-mux-gpio requests probe deferral

libphy: Freescale PowerQUICC MII Bus: probed

libphy: Freescale XGMAC MDIO Bus: probed

could not find GUTS node

could not find GUTS node

Freescale FM module (Oct  2 2015:14:57:26), FMD API version 21.1.0

Freescale FM Ports module (Oct  2 2015:14:57:27)

fsl_mac: fsl_mac: FSL FMan MAC API based driver ()

fsl_mac ffe4e0000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe4e0000.ethernet: FMan MAC address: 00:04:9f:00:67:00

fsl_mac ffe4e2000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe4e2000.ethernet: FMan MAC address: 00:04:9f:00:67:01

cpu6/6: Applying 10G TX ECC workaround (10GMAC-A004) ...

cpu6/6: done.

fsl_mac ffe4f0000.ethernet: FMan XGEC version: 0x00010330

fsl_mac ffe4f0000.ethernet: FMan MAC address: 00:04:9f:00:67:04

fsl_mac ffe5e4000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe5e4000.ethernet: FMan MAC address: 00:04:9f:00:67:07

fsl_mac ffe5e6000.ethernet: FMan dTSEC version: 0x08240101

fsl_mac ffe5e6000.ethernet: FMan MAC address: 00:04:9f:00:67:08

cpu6/6: Applying 10G TX ECC workaround (10GMAC-A004) ...

cpu6/6: done.

fsl_mac ffe5f0000.ethernet: FMan XGEC version: 0x00010330

fsl_mac ffe5f0000.ethernet: FMan MAC address: 00:04:9f:00:67:09

fsl_dpa: FSL DPAA Ethernet driver ()

fsl_dpa: FSL DPAA Ethernet debugfs entries ()

fsl_advanced: FSL DPAA Advanced drivers: ()

fsl_proxy: FSL DPAA Proxy initialization driver ()

fsl_proxy-proxy dpa-ethernet.24: probed MAC device with MAC address: 00:04:9f:00:67:04

fsl_proxy-proxy dpa-ethernet.25: probed MAC device with MAC address: 00:04:9f:00:67:07

fsl_proxy-proxy dpa-ethernet.26: probed MAC device with MAC address: 00:04:9f:00:67:08

fsl_proxy-proxy dpa-ethernet.27: probed MAC device with MAC address: 00:04:9f:00:67:09

fsl_dpa_shared: FSL DPAA Shared Ethernet driver ()

fsl_dpa_shared: fsl_dpa_shared: Probed shared interface eth0

fsl_dpa_macless: FSL DPAA MACless Ethernet driver ()

fsl_dpa_macless: fsl_dpa_macless: Probed macless0 interface as eth1

fsl_oh: FSL FMan Offline Parsing port driver ()

fsl_oh dpa-fman0-oh.28: Found OH node handle compatible with fsl,dpa-oh

fsl_oh dpa-fman0-oh.28: Allocating 0 ingress frame queues duples

fsl_oh dpa-fman0-oh.28: OH port /devices/fman0/port@82000 has no buffer pool. Fragmentation will not be enabled

fsl_oh dpa-fman0-oh.28: OH port /devices/fman0/port@82000 enabled.

fsl_oh dpa-fman0-oh.28: Default egress frame queue: 105

fsl_oh dpa-fman0-oh.28: Default error frame queue: 104

fsl_oh dpa-fman0-oh.28: Initialized queues:

e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI

e1000: Copyright (c) 1999-2006 Intel Corporation.

e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k

e1000e: Copyright(c) 1999 - 2013 Intel Corporation.

ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver

ehci-pci: EHCI PCI platform driver

ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver

ohci-pci: OHCI PCI platform driver

fsl-ehci fsl-ehci.0: Freescale On-Chip EHCI Host Controller

fsl-ehci fsl-ehci.0: new USB bus registered, assigned bus number 1

fsl-ehci fsl-ehci.0: irq 328, io mem 0xffe210000

fsl-ehci fsl-ehci.0: USB 2.0 started, EHCI 1.00

hub 1-0:1.0: USB hub found

hub 1-0:1.0: 1 port detected

usbcore: registered new interface driver usb-storage

i2c /dev entries driver

mpc-i2c ffe118100.i2c: timeout 1000000 us

rtc-ds3232 0-0068: rtc core: registered ds3232 as rtc0

mpc-i2c ffe118000.i2c: timeout 1000000 us

Freescale(R) MPC85xx EDAC driver, (C) 2006 Montavista Software

EDAC MC0: Giving out device to 'MPC85xx_edac' 'mpc85xx_mc_err': DEV mpc85xx_mc_err

MPC85xx_edac acquired irq 346 for MC

MPC85xx_edac MC err registered

EDAC MC1: Giving out device to 'MPC85xx_edac' 'mpc85xx_mc_err': DEV mpc85xx_mc_err

MPC85xx_edac acquired irq 347 for MC

MPC85xx_edac MC err registered

sdhci: Secure Digital Host Controller Interface driver

sdhci: Copyright(c) Pierre Ossman

sdhci-pltfm: SDHCI platform and OF driver helper

mmc0: SDHCI controller on ffe114000.sdhc [ffe114000.sdhc] using DMA

platform caam_qi.0: Linux CAAM Queue I/F driver initialised

caam ffe300000.crypto: device ID = 0x0a10030000000000 (Era 4)

caam ffe300000.crypto: job rings = 4, qi = 1

caam algorithms registered in /proc/crypto

platform caam_qi.0: fsl,sec-v4.0 algorithms registered in /proc/crypto

caam_jr ffe301000.jr: registering rng-caam

caam ffe300000.crypto: fsl,sec-v4.0 algorithms registered in /proc/crypto

Freescale USDPAA process driver

Freescale USDPAA process IRQ driver

fsl-pme ffe316000.pme: ver: 0x00100201

Freescale pme2 db driver

Freescale pme2 scan driver

fsl-pme2-scan: device pme_scan registered

Freescale hypervisor management driver

fsl-hv: registered handler for doorbell 404

ipip: IPv4 over IPv4 tunneling driver

TCP: cubic registered

Initializing XFRM netlink socket

NET: Registered protocol family 10

sit: IPv6 over IPv4 tunneling driver

NET: Registered protocol family 17

NET: Registered protocol family 15

8021q: 802.1Q VLAN Support v1.8

Key type dns_resolver registered

libphy: mdio_mux: probed

libphy: mdio_mux: probed

mdio-mux-gpio mdio-mux-emi1.17: Version 1.0

libphy: mdio_mux: probed

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus 1.1: cannot get PHY at address 0

libphy: mdio_mux: probed

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus ffe4f1000: MDIO read error

mdio_bus 1.3: cannot get PHY at address 4

mdio-mux-gpio mdio-mux-emi2.18: Version 1.0

fsl_generic: FSL DPAA Generic Ethernet driver ()

fsl_generic: FSL DPAA Ethernet debugfs entries ()

rtc-ds3232 0-0068: setting system clock to 2015-11-21 02:37:55 UTC (1448073475)

ata1: SATA link down (SStatus 0 SControl 0)

ata2: SATA link down (SStatus 0 SControl 0)

RAMDISK: gzip image found at block 0

RAMDISK: incomplete write (17034 != 32768)

write error

VFS: Mounted root (ext2 filesystem) readonly on device 1:0.

devtmpfs: mounted

Freeing unused kernel memory: 276K (c0855000 - c089a000)

INIT: version 2.88 booting

Starting udev

udevd[994]: starting version 182

Starting Bootlog daemon: bootlogd: cannot allocate pseudo tty: No such file or directory

bootlogd.

Populating dev cache

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 17, inode_bitmap = 139266

ln: failed to create symbolic link '/tmp': Input/output error

net.ipv4.conf.default.rp_filter = 0

net.ipv4.conf.all.rp_filter = 0

Running postinst /etc/rpm-postinsts/100-sysvinit-inittab...

Running postinst /etc/rpm-postinsts/101-inetutils-inetd...

Running postinst /etc/rpm-postinsts/102-debianutils...

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 16, inode_bitmap = 131074

Running postinst /etc/rpm-postinsts/103-util-linux-readprofile...

Running postinst /etc/rpm-postinsts/104-inetutils-telnetd...

Running postinst /etc/rpm-postinsts/105-inetutils-tftpd...

Running postinst /etc/rpm-postinsts/106-inetutils-ftpd...

update-rc.d: /etc/init.d/run-postinsts exists during rc.d purge (continuing)

Removing any system startup links for run-postinsts ...

  /etc/rcS.d/S99run-postinsts

INIT: Entering runlevel: 5

Configuring network interfaces... done.

Starting system message bus: dbus.

Starting OpenBSD Secure Shell server: sshd

  generating ssh RSA key...

  generating ssh ECDSA key...

  generating ssh DSA key...

  generating ssh ED25519 key...

done.

Starting network benchmark server: netserver.

Starting system log daemon...0

Starting kernel log daemon...0

Starting internet superserver: xinetd.

Stopping Bootlog daemon: bootlogd.

fsl-networking (QorIQ SDK) QorIQ-SDK-V1.8 p4080ds /dev/ttyEHV0

Partition 2:

Using CoreNet Generic machine description

Memory CAM mapping: 256/256 Mb, residual: 0Mb

Linux version 3.12.37-rt51-QorIQ-SDK-V1.8+gf488de6 (jng018@UbuntuSI9) (gcc version 4.9.2 (GCC) ) #1 SMP Fri Oct 2 14:58:34 SGT 2015

Found initrd at 0xc1300000:0xc353400b

USDPAA region at 18000000:4000000(18000:4000), 1 TLB1 entries)

CPU maps initialized for 1 thread per core

CoreNet Generic board from Freescale Semiconductor

Zone ranges:

  DMA      [mem 0x00000000-0x1fffffff]

  Normal   empty

  HighMem  empty

Movable zone start for each node

Early memory node ranges

  node   0: [mem 0x00000000-0x1fffffff]

MMU: Allocated 1088 bytes of context maps for 255 contexts

PERCPU: Embedded 8 pages/cpu @c0d65000 s9664 r8192 d14912 u32768

Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 130048

Kernel command line: usdpaa_mem=64M bportals=0 qportals=0

PID hash table entries: 2048 (order: 1, 8192 bytes)

Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)

Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)

Sorting __ex_table...

Memory: 343568K/524288K available (6716K kernel code, 332K rwdata, 1800K rodata, 276K init, 452K bss, 180720K reserved, 0K highmem)

Kernel virtual memory layout:

  * 0xfff5f000..0xfffff000  : fixmap

  * 0xffc00000..0xffe00000  : highmem PTEs

  * 0xffc00000..0xffc00000  : early ioremap

  * 0xe1000000..0xffc00000  : vmalloc & ioremap

Hierarchical RCU implementation.

  RCU debugfs-based tracing is enabled.

  RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.

NR_IRQS:512 nr_irqs:512 16

clocksource: timebase mult[14000d1b] shift[24] registered

Console: colour dummy device 80x25

console [tty0] enabled

console [ttyEHV0] enabled

ehv-bc: registered console driver for byte channel 96

pid_max: default: 32768 minimum: 301

Mount-cache hash table entries: 512

fsl_rcpm_init: can't find the rcpm node.

e500 family performance monitor hardware support registered

Brought up 1 CPUs

devtmpfs: initialized

NET: Registered protocol family 16

fsl-pamu: fsl_pamu_init: could not find a PAMU node

PCI: Probing PCI hardware

bio: create slab <bio-0> at 0

vgaarb: loaded

SCSI subsystem initialized

usbcore: registered new interface driver usbfs

usbcore: registered new interface driver hub

usbcore: registered new device driver usb

pps_core: LinuxPPS API ver. 1 registered

pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

PTP clock support registered

EDAC MC: Ver: 3.0.0

Bman portal initialised, cpu 0

Bman portals initialised

qman_driver:portal_set_cpu(): iommu_domain_alloc() failed

Failed to set QMan portal's stash request queue

Qman portal initialised, cpu 0

Qman portals initialised

Bman: BPID allocator includes range 48:16

Qman: FQID allocator includes range 384:128

Qman: FQID allocator includes range 49152:16384

Qman: CGRID allocator includes range 0:128

Qman: pool channel allocator includes range 33:8

Switched to clocksource timebase

NET: Registered protocol family 2

TCP established hash table entries: 4096 (order: 3, 32768 bytes)

TCP bind hash table entries: 4096 (order: 3, 32768 bytes)

TCP: Hash tables configured (established 4096 bind 4096)

TCP: reno registered

UDP hash table entries: 256 (order: 1, 8192 bytes)

UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)

NET: Registered protocol family 1

RPC: Registered named UNIX socket transport module.

RPC: Registered udp transport module.

RPC: Registered tcp transport module.

RPC: Registered tcp NFSv4.1 backchannel transport module.

Trying to unpack rootfs image as initramfs...

rootfs image is not initramfs (no cpio magic); looks like an initrd

Freeing initrd memory: 35024K (c1300000 - c3534000)

audit: initializing netlink socket (disabled)

type=2000 audit(0.072:1): initialized

HugeTLB registered 1 MB page size, pre-allocated 0 pages

HugeTLB registered 4 MB page size, pre-allocated 0 pages

HugeTLB registered 16 MB page size, pre-allocated 0 pages

HugeTLB registered 64 MB page size, pre-allocated 0 pages

HugeTLB registered 256 MB page size, pre-allocated 0 pages

HugeTLB registered 1 GB page size, pre-allocated 0 pages

NFS: Registering the id_resolver key type

Key type id_resolver registered

Key type id_legacy registered

NTFS driver 2.1.30 [Flags: R/O].

jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.

msgmni has been set to 868

io scheduler noop registered

io scheduler deadline registered

io scheduler cfq registered (default)

Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

ePAPR hypervisor byte channel driver

ehv-bc 60.byte-channel: registered /dev/ttyEHV0 for byte channel 96

Generic non-volatile memory driver v1.1

brd: module loaded

loop: module loaded

st: Version 20101219, fixed bufsize 32768, s/g segs 256

libphy: Fixed MDIO Bus: probed

Freescale FM module (Oct  2 2015:14:57:26), FMD API version 21.1.0

Freescale FM Ports module (Oct  2 2015:14:57:27)

fsl_mac: fsl_mac: FSL FMan MAC API based driver ()

fsl_dpa: FSL DPAA Ethernet driver ()

fsl_dpa: FSL DPAA Ethernet debugfs entries ()

fsl_advanced: FSL DPAA Advanced drivers: ()

fsl_proxy: FSL DPAA Proxy initialization driver ()

fsl_dpa_shared: FSL DPAA Shared Ethernet driver ()

fsl_dpa_macless: FSL DPAA MACless Ethernet driver ()

fsl_dpa_macless-macless dpa-ethernet.11: qman_init_fq(16392) = -5

fsl_dpa_macless-macless dpa-ethernet.11: qman_retire_fq(16392) = -22

fsl_dpa_macless-macless dpa-ethernet.11: qman_oos_fq(16392) = -22

fsl_dpa_macless-macless: probe of dpa-ethernet.11 failed with error -5

fsl_dpa_macless-macless dpa-ethernet.12: qman_init_fq(544) = -5

fsl_dpa_macless-macless dpa-ethernet.12: qman_retire_fq(544) = -22

fsl_dpa_macless-macless dpa-ethernet.12: qman_oos_fq(544) = -22

fsl_dpa_macless-macless: probe of dpa-ethernet.12 failed with error -5

fsl_oh: FSL FMan Offline Parsing port driver ()

e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI

e1000: Copyright (c) 1999-2006 Intel Corporation.

e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k

e1000e: Copyright(c) 1999 - 2013 Intel Corporation.

ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver

ehci-pci: EHCI PCI platform driver

ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver

ohci-pci: OHCI PCI platform driver

usbcore: registered new interface driver usb-storage

i2c /dev entries driver

mpc-i2c ffe119000.i2c: timeout 1000000 us

mpc-i2c ffe119100.i2c: timeout 1000000 us

Freescale(R) MPC85xx EDAC driver, (C) 2006 Montavista Software

sdhci: Secure Digital Host Controller Interface driver

sdhci: Copyright(c) Pierre Ossman

sdhci-pltfm: SDHCI platform and OF driver helper

No fsl,qman node

Freescale USDPAA process driver

Freescale USDPAA process IRQ driver

Freescale pme2 db driver

PME2: fsl_pme2_db_init: not on ctrl-plane

Freescale pme2 scan driver

fsl-pme2-scan: device pme_scan registered

Freescale hypervisor management driver

fsl-hv: registered handler for doorbell 93

ipip: IPv4 over IPv4 tunneling driver

TCP: cubic registered

Initializing XFRM netlink socket

NET: Registered protocol family 10

sit: IPv6 over IPv4 tunneling driver

NET: Registered protocol family 17

NET: Registered protocol family 15

8021q: 802.1Q VLAN Support v1.8

Key type dns_resolver registered

fsl_generic: FSL DPAA Generic Ethernet driver ()

fsl_generic: FSL DPAA Ethernet debugfs entries ()

drivers/rtc/hctosys.c: unable to open rtc device (rtc0)

RAMDISK: gzip image found at block 0

RAMDISK: incomplete write (17034 != 32768)

write error

VFS: Mounted root (ext2 filesystem) readonly on device 1:0.

devtmpfs: mounted

Freeing unused kernel memory: 276K (c0855000 - c089a000)

INIT: version 2.88 booting

Starting udev

udevd[588]: starting version 182

Starting Bootlog daemon: bootlogd: cannot allocate pseudo tty: No such file or directory

bootlogd.

Populating dev cache

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 17, inode_bitmap = 139266

ln: failed to create symbolic link '/tmp': Input/output error

net.ipv4.conf.default.rp_filter = 0

net.ipv4.conf.all.rp_filter = 0

hwclock: can't open '/dev/misc/rtc': No such file or directory

Sat Jun 13 18:16:00 UTC 2015

hwclock: can't open '/dev/misc/rtc': No such file or directory

Running postinst /etc/rpm-postinsts/100-sysvinit-inittab...

Running postinst /etc/rpm-postinsts/101-inetutils-inetd...

Running postinst /etc/rpm-postinsts/102-debianutils...

EXT2-fs (ram0): error: read_inode_bitmap: Cannot read inode bitmap - block_group = 16, inode_bitmap = 131074

Running postinst /etc/rpm-postinsts/103-util-linux-readprofile...

Running postinst /etc/rpm-postinsts/104-inetutils-telnetd...

Running postinst /etc/rpm-postinsts/105-inetutils-tftpd...

Running postinst /etc/rpm-postinsts/106-inetutils-ftpd...

update-rc.d: /etc/init.d/run-postinsts exists during rc.d purge (continuing)

Removing any system startup links for run-postinsts ...

  /etc/rcS.d/S99run-postinsts

INIT: Entering runlevel: 5

Configuring network interfaces... done.

Starting system message bus: dbus.

Starting OpenBSD Secure Shell server: sshd

  generating ssh RSA key...

  generating ssh ECDSA key...

  generating ssh DSA key...

  generating ssh ED25519 key...

done.

hwclock: can't open '/dev/misc/rtc': No such file or directory

Starting network benchmark server: netserver.

Starting system log daemon...0

Starting kernel log daemon...0

Starting internet superserver: xinetd.

Stopping Bootlog daemon: bootlogd.

fsl-networking (QorIQ SDK) QorIQ-SDK-V1.8 p4080ds /dev/ttyEHV0

Thanks again!

Daniel

0 Kudos