Skip to content

Commit b2be520

Browse files
committed
jetson-tk1: Add kernel log whitelist
Add a list of kernel messages that are expected on boot. With these, the kernel log test is currently failing (as of next-20181017) because some of these should really be fixed. Signed-off-by: Thierry Reding <treding@nvidia.com>
1 parent 78ea210 commit b2be520

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

boards/nvidia/jetson-tk1.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,26 @@ class Board(boards.Board):
5858
# SPI bus
5959
sysfs.Device('spi', 'spi1.0', 'm25p80'),
6060
]
61+
62+
whitelist = [
63+
r'/cpus/cpu@\d+missing clock-frequency property',
64+
r' usb\d+-\d+: usb\d+-\d+ supply vbus not found',
65+
r'.*Failed to get supply \'.*\': -517',
66+
r'\+.*: bypassed regulator has no supply!',
67+
r'\+.*: failed to get the current voltage\(-517\)',
68+
r'as3722-regulator as3722-regulator: regulator .* register failed -517',
69+
r'tegra124-dfll 70110000.clock: couldn\'t get vdd_cpu regulator',
70+
r'tegra-ahci 70027000\.sata: Failed to get regulators',
71+
r'tegra-xusb 70090000\.usb: failed to get regulators: -517',
72+
r'lm90 0-004c: 0-004c supply vcc not found, using dummy regulator',
73+
r'mmc\d+: Unknown controller version \(3\)\. You may experience problems\.',
74+
r'mmc\d+: Invalid maximum block size, assuming 512 bytes',
75+
r'tegra30-i2s 70301100\.i2s: DMA channels sourced from device 70300000\.ahub',
76+
r'as3722-regulator as3722-regulator: DMA mask not set',
77+
r'tegra-pcie 1003000\.pcie: Slot present pin change, signature: \d+',
78+
r'tegra-pcie 1003000\.pcie: link \d+ down, retrying',
79+
r'pci_bus [0-9a-fA-F]{4}:[0-9a-fA-F]{2}: \d+-byte config .* to [0-9a-fA-F]{4}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}\.\d offset 0x[0-9a-fA-F]+ may corrupt adjacent RW1C bits',
80+
r'pci [0-9a-fA-F]{4}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}\.[0-9a-fA-F]: nv_msi_ht_cap_quirk didn\'t locate host bridge',
81+
r'platform regulatory.0: Direct firmware load for regulatory.db failed with error -2',
82+
r'tegra-hdmi 54280000.hdmi: cannot set audio to 48000 Hz at 297000000 Hz pixel clock',
83+
]

0 commit comments

Comments
 (0)