mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-25 05:47:00 +00:00
8f4b5fdd5f
The driver maintains elapsed times by repeatedly accumulating the time since the previous update in a loop. For the elapsed showtime time, the time difference is truncated to seconds before adding it, leading to a sizable error over time. Move the truncation to before calculation of the time difference in order to remove this error. Also maintain the total elapsed time in the same way in full seconds, to prevent the unsigned 32-bit counter from wrapping around after about 50 days. Testing on a VR9 device shows that the reported line uptime now matches the actual elapsed wall time. The ADSL variant is only compile-tested, but it should also work as the relevant code is identical. Signed-off-by: Jan Hoffmann <jan@3e8.eu> Tested-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> (cherry picked from commit db4bf4b968c0da035d98e7771fc993af9d6f742b)
77 lines
2.1 KiB
Makefile
77 lines
2.1 KiB
Makefile
# Copyright (C) 2012 OpenWrt.org
|
|
# Copyright (C) 2015-2016 Lantiq Beteiligungs GmbH & Co KG.
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=ltq-vdsl-vr9
|
|
PKG_VERSION:=4.17.18.6
|
|
PKG_RELEASE:=7
|
|
|
|
PKG_BASE_NAME:=drv_dsl_cpe_api
|
|
PKG_SOURCE:=$(PKG_BASE_NAME)_vrx-$(PKG_VERSION).tar.gz
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_BASE_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_URL:=@OPENWRT
|
|
PKG_HASH:=b4966a60653acc49254b168c6cc9c49eb36c54548e763617788aa4f252a29f21
|
|
PKG_LICENSE:=GPL-2.0 BSD-2-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define KernelPackage/ltq-vdsl-vr9
|
|
TITLE:=vdsl driver
|
|
SECTION:=sys
|
|
SUBMENU:=Network Devices
|
|
DEPENDS:=@TARGET_lantiq_xrx200 +kmod-ltq-vdsl-vr9-mei
|
|
FILES:=$(PKG_BUILD_DIR)/src/drv_dsl_cpe_api.ko
|
|
AUTOLOAD:=$(call AutoLoad,51,drv_dsl_cpe_api)
|
|
endef
|
|
|
|
define Package/ltq-vdsl-vr9/description
|
|
This package contains the Lantiq DSL CPE API driver.
|
|
|
|
Supported Devices:
|
|
- VRX200 Family
|
|
endef
|
|
|
|
MAKE_FLAGS += \
|
|
$(KERNEL_MAKE_FLAGS) \
|
|
SHELL="$(BASH)"
|
|
|
|
CONFIGURE_ARGS += --enable-kernel-include="$(LINUX_DIR)/include" \
|
|
--with-max-device="1" \
|
|
--with-lines-per-device="1" \
|
|
--with-channels-per-line="1" \
|
|
--enable-vrx \
|
|
--enable-vrx-device=vr9 \
|
|
--enable-ifxos \
|
|
--enable-ifxos-include="-I$(STAGING_DIR)/usr/include/ifxos" \
|
|
--enable-driver-include="-I$(STAGING_DIR)/usr/include/vdsl" \
|
|
--enable-add-drv-cflags="-DMODULE -DINCLUDE_DSL_ATM_PTM_INTERFACE_SUPPORT" \
|
|
--enable-linux-26 \
|
|
--enable-kernelbuild="$(LINUX_DIR)" \
|
|
--enable-debug-prints=no \
|
|
ARCH=mips
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-model=full \
|
|
--enable-dsl-ceoc=no
|
|
#CONFIGURE_ARGS += --enable-model=lite
|
|
#CONFIGURE_ARGS += --enable-model=footprint
|
|
#CONFIGURE_ARGS += --enable-model=typical
|
|
#CONFIGURE_ARGS += --enable-model=debug
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/include/drv_vdsl_cpe_api
|
|
$(CP) $(PKG_BUILD_DIR)/src/include/drv_dsl_cpe*.h $(1)/usr/include/drv_vdsl_cpe_api/
|
|
endef
|
|
|
|
$(eval $(call KernelPackage,ltq-vdsl-vr9))
|