mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-16 18:11:22 +00:00
This CL adds the driver support for the WoV module which inludes the following files: - wov.c - wov_chip.h - apm.c - apm_chip.h It also supports the console commad "wov" which can test different configuration and audio quality by entering different parameters. The detail description of WoV console command is listed below: ------------------------------------------------------------------------ [Note]: Before changing any of settings, please make sure the operation mode is on the "OFF" state. (ie. run the command wov cfgmod off first) . > wov init Initialize WoV interface, including pin mux and interrupt registration etc. > wov mute <enable / disable > mute enable / disable. > wov cfgsrc <mono | stereo | left | right> set audio source, ex: wov cfgsrc left, means audio source from left MIC. > wov cfgbis <16|18|20|24> set audio resolution, ex: wov cfgbit 16 means audio resolution are 16bits. > wov cfgsfs <8000|12000|16000|24000|32000|48000> set audio sampling frequency rate, ex: wov cfgsfs 48000 means audio sampling rate are 48Khz. > wov cfgbck <32fs|48fs|64fs|128fs|256fs> set I2S bit clock rate, ex: wov cfgsfs 48000 and wov cfgbck 32fs means audio sampling rate are 1536Khz (32*48000). > wov cfgfmt <i2s|right|left|pcma|pcmb|tdm> set I2S but format, ex: wov cfgfmt right means audio I2S format are Right-Justify. > wov cfgmod <off|vad|ram|i2s|rami2s> set audio operation mode ,ex: wov cfgmod i2s means audio output via I2S bus. > wov cfgtdm <0~496 0~496 0~3> set TDM time slot, the first values is left channel delay counter, the second is right channel, and the 3rd is startup counting condition. (chosen LRCK raising or falling edge) . [Note: this command is just working on cfgmod equal to tdm] > wov cfgget retrieve above settings. > wov vadsens (currently not support, reserve for next version) > wov gain (0~31) set audio data gain value, ex: wov gain 10 means setting audio digital gain are 10dB. > wov cfgdck <1.0 | 2.4 | 3.0 > set digital MIC PDM clock rate. ex: wov cfgdck 2.4 means PDM clock are 2.4Mhz. ----------------------------------------------------------------------- This CL also adds the chip ID (0x24) for npcx7m7w. So the console command "version" can show the chip is npcx7m7w. BRANCH=none BUG=none TEST=No build errors for make buildall. TEST="BOARD=npcx7_evb make"; Flash the image on EVB; Test WoV function with console commands described above. Change-Id: Ief2b3e89edbd3e6d2a9d82d317a93c9f0b7a20cd Signed-off-by: Dror Goldstein <dror.goldstein@nuvoton.com> Signed-off-by: Simon Liang <CMLiang@nuvoton.com> Signed-off-by: CHLin <CHLIN56@nuvoton.com> Reviewed-on: https://chromium-review.googlesource.com/897314 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: CH Lin <chlin56@nuvoton.com> Reviewed-by: Scott Collyer <scollyer@chromium.org>
71 lines
2.5 KiB
Makefile
71 lines
2.5 KiB
Makefile
# -*- makefile -*-
|
|
# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# NPCX chip specific files build
|
|
#
|
|
|
|
# NPCX SoC has a Cortex-M4F ARM core
|
|
CORE:=cortex-m
|
|
# Allow the full Cortex-M4 instruction set
|
|
CFLAGS_CPU+=-march=armv7e-m -mcpu=cortex-m4
|
|
|
|
# Assign default CHIP_FAMILY as npcx5 for old boards used npcx5 series
|
|
ifeq ($(CHIP_FAMILY),)
|
|
CHIP_FAMILY:=npcx5
|
|
endif
|
|
|
|
# Required chip modules
|
|
chip-y=header.o clock.o gpio.o hwtimer.o system.o uart.o
|
|
chip-y+=system-$(CHIP_FAMILY).o
|
|
|
|
# Optional chip modules
|
|
chip-$(CONFIG_ADC)+=adc.o
|
|
chip-$(CONFIG_FANS)+=fan.o
|
|
chip-$(CONFIG_FLASH_PHYSICAL)+=flash.o
|
|
chip-$(CONFIG_I2C)+=i2c.o i2c-$(CHIP_FAMILY).o
|
|
chip-$(CONFIG_LPC)+=lpc.o
|
|
chip-$(CONFIG_ESPI)+=espi.o
|
|
chip-$(CONFIG_PECI)+=peci.o
|
|
chip-$(CONFIG_HOSTCMD_SPS)+=shi.o
|
|
# pwm functions are implemented with the fan functions
|
|
chip-$(CONFIG_PWM)+=pwm.o
|
|
chip-$(CONFIG_SPI)+=spi.o
|
|
chip-$(CONFIG_WATCHDOG)+=watchdog.o
|
|
chip-$(HAS_TASK_KEYSCAN)+=keyboard_raw.o
|
|
chip-$(CONFIG_WAKE_ON_VOICE)+=apm.o
|
|
chip-$(CONFIG_WAKE_ON_VOICE)+=wov.o
|
|
|
|
# spi monitor program fw for openocd and UUT(UART Update Tool)
|
|
npcx-monitor-fw=chip/npcx/spiflashfw/npcx_monitor
|
|
npcx-monitor-fw-bin=${out}/$(npcx-monitor-fw).bin
|
|
PROJECT_EXTRA+=${npcx-monitor-fw-bin}
|
|
# Monitor header is only used for UUT which is not supported on npcx5.
|
|
ifneq "$(CHIP_FAMILY)" "npcx5"
|
|
npcx-monitor-hdr=chip/npcx/spiflashfw/monitor_hdr
|
|
npcx-monitor-hdr-ro-bin=${out}/$(npcx-monitor-hdr)_ro.bin
|
|
npcx-monitor-hdr-rw-bin=${out}/$(npcx-monitor-hdr)_rw.bin
|
|
PROJECT_EXTRA+=${npcx-monitor-hdr-ro-bin} ${npcx-monitor-hdr-rw-bin}
|
|
endif
|
|
|
|
# ECST tool is for filling the header used by booter of npcx EC
|
|
show_esct_cmd=$(if $(V),,echo ' ECST ' $(subst $(out)/,,$@) ; )
|
|
|
|
# ECST options for header
|
|
bld_ecst=${out}/util/ecst -chip $(CHIP_VARIANT) -usearmrst -mode bt -ph -i $(1) -o $(2) -nohcrc \
|
|
-nofcrc -flashsize 8 -spimaxclk 50 -spireadmode dual 1> /dev/null
|
|
|
|
# Replace original one with the flat file including header
|
|
moveflat=mv -f $(1) $(2)
|
|
|
|
# Commands for ECST
|
|
cmd_ecst=$(show_esct_cmd)$(call moveflat,$@,$@.tmp);$(call bld_ecst,$@.tmp,$@)
|
|
|
|
# Commands to append npcx header in ec.RO.flat
|
|
cmd_org_ec_elf_to_flat = $(OBJCOPY) --set-section-flags .roshared=share \
|
|
-O binary $(patsubst %.flat,%.elf,$@) $@
|
|
cmd_npcx_ro_elf_to_flat=$(cmd_org_ec_elf_to_flat);$(cmd_ecst)
|
|
cmd_ec_elf_to_flat = $(if $(filter $(out)/RO/ec.RO.flat, $@), \
|
|
$(cmd_npcx_ro_elf_to_flat), $(cmd_org_ec_elf_to_flat) )
|