Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production tests for carrier ADRV1CRR #14

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
b7ed986
m2k_addon/production.sh: Suspend the process to allow the user
andreeaipop Oct 13, 2021
863ec1a
m2k_addon/setup_env: Fix python3 packages install and remove
andreeaipop Oct 13, 2021
98feffa
Add production tests for adrv1crr
ranechita Nov 11, 2021
abe1c92
test_prod: adrv1crr: update nav test
ranechita Nov 12, 2021
a6ef054
prod_tests: adrv1crr: periph + gpio
ranechita Nov 23, 2021
c14af3e
prod_tests: remove test_hmc
ranechita Nov 23, 2021
a20745d
prod_tests: usb host mode
ranechita Nov 23, 2021
1fe2d86
prod_tests: audio test
ranechita Nov 23, 2021
888e38f
prod_tests: adrv1crr: clocks
ranechita Nov 23, 2021
9ce49f7
prod_tests: adrv1crr: fix naming and beautify
ranechita Nov 26, 2021
8e8f668
prod_tests: adrv1crr: update pass/fail conditions
ranechita Dec 7, 2021
f355ae7
prod_tests: adrv1crr: add usb peripheral test
ranechita Dec 7, 2021
9fda358
prod_tests: adrv1crr: small fixes
ranechita Dec 9, 2021
55fff3e
prod_tests: adrv1crr: reduce wait time
ranechita Dec 9, 2021
966a408
prod_tests: adrv1crr: add board serial number
ranechita Dec 13, 2021
7c92a31
scanner attempt2
ranechita Dec 13, 2021
a3ca599
scanner attempt 3
ranechita Dec 13, 2021
20dd598
scanner
ranechita Dec 13, 2021
b40ac0e
prod: adrv1crr: quickfix for otg
ranechita Feb 10, 2022
9cd6fe0
prod: adrv1crr: fix permissions
ranechita Feb 11, 2022
e573c4e
prod: adrv1crr: fix wrong driver path
ranechita Feb 11, 2022
ee1d7be
prod: adrv: another permission update
ranechita Feb 11, 2022
d2c2f28
prod: adrv1crr: fix bind
ranechita Feb 14, 2022
68de7a7
prod:adrv1crr: add 1 sec sleep at otg speed test
ranechita Feb 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions adrv1crr/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ADRV9361-Z7035 production test scripts
======================================
8 changes: 8 additions & 0 deletions adrv1crr/adrv_crr_test/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
SRCS = $(wildcard *.c)

PROGS = $(patsubst %.c,%,$(SRCS))

all: $(PROGS)

%: %.c
$(CC) $(CFLAGS) -o $@ $<
37 changes: 37 additions & 0 deletions adrv1crr/adrv_crr_test/crr_test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
#!/bin/bash

SCRIPT_DIR="$(readlink -f $(dirname $0))"
FAIL_COUNT=0

source $SCRIPT_DIR/test_nav.sh
answer=$?
proceed_if_ok $answer

echo
source $SCRIPT_DIR/test_audio.sh
answer=$?
proceed_if_ok $answer

echo
source $SCRIPT_DIR/test_periph.sh
answer=$?
proceed_if_ok $answer

echo
source $SCRIPT_DIR/test_clk.sh
answer=$?
proceed_if_ok $answer

echo
source $SCRIPT_DIR/test_eth.sh
answer=$?
proceed_if_ok $answer

echo
source $SCRIPT_DIR/test_usb.sh
answer=$?
proceed_if_ok $answer

failed_no
answer=$?
exit $answer
Binary file added adrv1crr/adrv_crr_test/i2c_ad9545
Binary file not shown.
12 changes: 12 additions & 0 deletions adrv1crr/adrv_crr_test/phys_addr.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef PHYS_ADDR_H
#define PHYS_ADDR_H

#define XCVR_BADDR 0x44A60000

#define FMC_GPIO_0_BADDR 0x41300000
#define FMC_GPIO_1_BADDR 0x41310000
#define CAM_GPIO_BADDR 0x41320000

#define AXI_CLK_MONITOR_BADDR 0x41330000

#endif
Loading