Ngie Cooper (yaneurabeya) (yaneurab...@gmail.com) wrote:
>
> > On Jan 10, 2017, at 5:53 PM, Oleksandr Tymoshenko wrote:
> >
> > Author: gonzo
> > Date: Wed Jan 11 01:53:54 2017
> > New Revision: 311911
> > URL: https://svnweb.freebsd.org/changeset/base/311
Author: gonzo
Date: Tue Jan 17 00:39:09 2017
New Revision: 312316
URL: https://svnweb.freebsd.org/changeset/base/312316
Log:
[zynq] Fix panic on USB PHY initialization failure
The Zedboard has a hardware bug where initialization of the USB PHY
occasionally fails on boot-up. Fix regression
Author: gonzo
Date: Tue Jan 17 19:19:29 2017
New Revision: 312349
URL: https://svnweb.freebsd.org/changeset/base/312349
Log:
MFC r311888, r311890-r311891
r311888:
[efi] Fix off-by-one error in ARM .bss zeroing code in loader's _start
__bss_end should not be included in .bss zeroing c
Author: gonzo
Date: Mon Jan 23 19:20:55 2017
New Revision: 312670
URL: https://svnweb.freebsd.org/changeset/base/312670
Log:
[am335x] Use upstream tda19988 framer node from upstream DTS
Remove custom DTS duplicate of tda19988 node and use upstream-provided
one introduced by r295436. This
/dev/sdhci/sdhci_acpi.c)
@@ -0,0 +1,370 @@
+/*-
+ * Copyright (c) 2017 Oleksandr Tymoshenko
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions
Author: gonzo
Date: Thu Oct 29 22:12:03 2015
New Revision: 290167
URL: https://svnweb.freebsd.org/changeset/base/290167
Log:
Fix LEAVE_HYP macro: spsr is not guaranteed to contain valid value at this
point, e.g. on RaspberryPi 2 when control is passed from loader to kernel
it contains garbag
Author: gonzo
Date: Fri Oct 30 00:24:37 2015
New Revision: 290171
URL: https://svnweb.freebsd.org/changeset/base/290171
Log:
Fix framebuffer compatibility with new RPi firmware. Framebuffer driver
receives video memory address from VideoCore through property mailbox
channel. Older versions o
Author: gonzo
Date: Fri Oct 30 01:19:04 2015
New Revision: 290176
URL: https://svnweb.freebsd.org/changeset/base/290176
Log:
Fix BULK read transfer if destination buffer is not cache line-aligned.
We can't use copyout because destination memory is userland address
in another process but w
Author: gonzo
Date: Sun Nov 1 21:59:56 2015
New Revision: 290243
URL: https://svnweb.freebsd.org/changeset/base/290243
Log:
Treat synchronous VFP exception just like aynchronous: as an FP exception,
not as illegal instruction
Modified:
head/sys/arm/arm/vfp.c
head/sys/arm/include/vfp.h
M
Author: gonzo
Date: Sun Nov 1 22:17:39 2015
New Revision: 290245
URL: https://svnweb.freebsd.org/changeset/base/290245
Log:
Synchronize with latest upstream VCHI code:
- Add LIB_VERSION ioctl
- Add CLOSE_DELIVERED ioctl
- Bump code version
Upstream version: 3782f2ad42c08f4d32f6413
Author: gonzo
Date: Sun Nov 1 23:50:07 2015
New Revision: 290249
URL: https://svnweb.freebsd.org/changeset/base/290249
Log:
Add mailbox tag/structure for touchscreen buffer address property
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_mbox_prop.h
Modified: head/sys/arm/broadcom/bcm2835/b
> On Nov 2, 2015, at 1:36 AM, Andrew Turner wrote:
>
> On Sun, 1 Nov 2015 22:17:39 + (UTC)
> Oleksandr Tymoshenko wrote:
>
>> Author: gonzo
>> Date: Sun Nov 1 22:17:39 2015
>> New Revision: 290245
>> URL: https://svnweb.freebsd.org/changeset/base/
Author: gonzo
Date: Tue Nov 3 04:50:58 2015
New Revision: 290321
URL: https://svnweb.freebsd.org/changeset/base/290321
Log:
Raspberry Pi firmware passes cache line size as a DTB parameter
- Add cache-line-size paramter to vchiq node
- Add cache_line_size DTB parameter referencing to
Author: gonzo
Date: Tue Nov 3 05:25:06 2015
New Revision: 290322
URL: https://svnweb.freebsd.org/changeset/base/290322
Log:
Fix cache issues with bulk transfers
- Use pmap_quick_enter_page/pmap_quick_remove_page to bounce non-cacheline
aligned head and tail fragments
- Switch from
Author: gonzo
Date: Wed Nov 4 04:01:59 2015
New Revision: 290349
URL: https://svnweb.freebsd.org/changeset/base/290349
Log:
Revert r290243, it's vaid "illegal instruction" case
DEX bit is set to 1 and exception raised whenever vectorized operation is
attempted on the VFP implementation t
Author: gonzo
Date: Thu Nov 5 03:46:54 2015
New Revision: 290381
URL: https://svnweb.freebsd.org/changeset/base/290381
Log:
Refactor mailbox property API to make it usable for /dev/vcio driver:
- Add bcm2835_mbox_property for generic property request, it accepts
pointer to prepared p
le is newly added)
+++ head/sys/arm/broadcom/bcm2835/bcm2835_vcio.cThu Nov 5 04:16:03
2015(r290382)
@@ -0,0 +1,122 @@
+/*-
+ * Copyright (c) 2015 Oleksandr Tymoshenko
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted pro
Author: gonzo
Date: Sun Nov 8 03:34:19 2015
New Revision: 290533
URL: https://svnweb.freebsd.org/changeset/base/290533
Log:
- Replace semaphore-base locking with sleep/wait synchronization:
sema_trywait/sema_timedwait can't be used while holding
non-sleepable mutex
- Fix infini
Author: gonzo
Date: Sun Nov 8 03:53:31 2015
New Revision: 290534
URL: https://svnweb.freebsd.org/changeset/base/290534
Log:
Fix locking for VCHI driver by matching sleepable/non-sleepable APIs:
- Emulate Linux mutex API using sx(9) locks with only exclusive operations
instead of mute
Author: gonzo
Date: Sun Nov 8 03:54:15 2015
New Revision: 290535
URL: https://svnweb.freebsd.org/changeset/base/290535
Log:
vchiq interrupt is MP safe, add respective flag to bus_setup_intr
Modified:
head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c
Modified: head/sys/contrib/vchiq/in
Author: gonzo
Date: Sun Nov 8 04:15:52 2015
New Revision: 290536
URL: https://svnweb.freebsd.org/changeset/base/290536
Log:
Fix some of WITNESS complaints and bootup lock by removing msg_avail
condvar/mutex. They're basically no-op because error is not propagated
up the call chain. We still
Author: gonzo
Date: Wed Nov 11 00:41:02 2015
New Revision: 290666
URL: https://svnweb.freebsd.org/changeset/base/290666
Log:
- Set have_message in interrupt to handle "response before READ" case
- Serialize access to property channel when using bcm2835_mbox_property
Modified:
head/sys/arm/b
Author: gonzo
Date: Wed Nov 11 00:45:41 2015
New Revision: 290667
URL: https://svnweb.freebsd.org/changeset/base/290667
Log:
Refactor bcm2835_cpufreq to use bcm2835_mbox_property API
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c
Modified: head/sys/arm/broadcom/bcm2835/bcm2835_cpu
Author: gonzo
Date: Thu Nov 12 03:37:28 2015
New Revision: 290703
URL: https://svnweb.freebsd.org/changeset/base/290703
Log:
Add riotboard DTB to dtb/imx6
Modified:
head/sys/modules/dtb/imx6/Makefile
Modified: head/sys/modules/dtb/imx6/Makefile
===
Author: gonzo
Date: Thu Nov 12 21:37:58 2015
New Revision: 290727
URL: https://svnweb.freebsd.org/changeset/base/290727
Log:
Enable cloks for all USDHC interfaces, previous value was USDHC 1-3 + USBOH3
Modified:
head/sys/arm/freescale/imx/imx6_ccm.c
Modified: head/sys/arm/freescale/imx/imx6_
==
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sys/arm/freescale/imx/imx6_src.c Fri Nov 13 23:47:41 2015
(r290807)
@@ -0,0 +1,173 @@
+/*-
+ * Copyright (c) 2015 Oleksandr Tymoshenko
Author: gonzo
Date: Sat Nov 14 03:05:42 2015
New Revision: 290814
URL: https://svnweb.freebsd.org/changeset/base/290814
Log:
Move all HDMI-related stuff to hdmi_if.m, hdmi.h is not required
Deleted:
head/sys/arm/ti/am335x/hdmi.h
Modified:
head/sys/arm/ti/am335x/am335x_lcd.c
head/sys/arm/t
, because file is newly added)
+++ head/sys/arm/arm/hdmi_if.m Sat Nov 14 03:22:59 2015(r290815, copy
of r290814, head/sys/arm/ti/am335x/hdmi_if.m)
@@ -0,0 +1,57 @@
+#-
+# Copyright (c) 2015 Oleksandr Tymoshenko
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms
Author: gonzo
Date: Sat Nov 14 21:01:35 2015
New Revision: 290831
URL: https://svnweb.freebsd.org/changeset/base/290831
Log:
Somewhat improve HDMI event API
- Pass device_t for HDMI framer as an argument for event hook
- Use #define for event values, instead of opaque (and unused) 0
Modi
Author: gonzo
Date: Sat Nov 14 22:46:50 2015
New Revision: 290834
URL: https://svnweb.freebsd.org/changeset/base/290834
Log:
Replace magic numbers for CCGRx registers with more descriptive names
Modified:
head/sys/arm/freescale/imx/imx6_ccm.c
head/sys/arm/freescale/imx/imx6_ccmreg.h
Modifi
Author: gonzo
Date: Thu Jan 7 22:51:59 2016
New Revision: 293387
URL: https://svnweb.freebsd.org/changeset/base/293387
Log:
Remove myself from the size limit override pool.
Modified:
svnadmin/conf/sizelimit.conf
Modified: svnadmin/conf/sizelimit.conf
Author: gonzo
Date: Thu Jan 14 20:25:22 2016
New Revision: 294035
URL: https://svnweb.freebsd.org/changeset/base/294035
Log:
Fix order of last two arguments of mtx_init
Spotted by: jmcne...@netbsd.org
Modified:
head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c
Modified: head/sys/c
Author: gonzo
Date: Sun Oct 18 23:58:05 2015
New Revision: 289554
URL: https://svnweb.freebsd.org/changeset/base/289554
Log:
Enable gpiobacklight in BEAGLEBONE config to support LCD capes by
4DSYSTEMS out of box
Modified:
head/sys/arm/conf/BEAGLEBONE
Modified: head/sys/arm/conf/BEAGLEBONE
sr.sbin/gpioctl/gpioctl.c
==
--- head/usr.sbin/gpioctl/gpioctl.c Fri Mar 11 21:00:14 2016
(r296681)
+++ head/usr.sbin/gpioctl/gpioctl.c Fri Mar 11 21:05:16 2016
(r296682)
@@ -1,6 +1,7 @@
/*-
* Copyright (c) 2009, Oleksandr Tymoshenko
* Copyright (c) 2014, Ru
> On Mar 11, 2016, at 1:05 PM, Oleksandr Tymoshenko wrote:
>
> Author: gonzo
> Date: Fri Mar 11 21:05:16 2016
> New Revision: 296682
> URL: https://svnweb.freebsd.org/changeset/base/296682
>
> Log:
> Make it possible for operations to refer to GPIO pins by name
&
Author: gonzo
Date: Tue Apr 5 18:07:13 2016
New Revision: 297587
URL: https://svnweb.freebsd.org/changeset/base/297587
Log:
Remove misleading comment. musb supports host mode for more than two years now
Spotted by: jmcneill
Modified:
head/sys/dev/usb/controller/musb_otg.c
Modified: hea
Author: gonzo
Date: Thu Apr 7 01:18:41 2016
New Revision: 297631
URL: https://svnweb.freebsd.org/changeset/base/297631
Log:
Release Jared McNeill (jmcneill) from mentorship
Approved by:adrian (co-mentor)
Modified:
svnadmin/conf/mentors
Modified: svnadmin/conf/mentors
==
Author: gonzo
Date: Sun Apr 10 23:17:06 2016
New Revision: 297794
URL: https://svnweb.freebsd.org/changeset/base/297794
Log:
Fix IIC "how" argument dereferencing on big-endian platforms
"how" argument is passed as value of int* pointer to callback
function but dereferenced as char* so onl
Author: gonzo
Date: Wed Apr 13 05:28:27 2016
New Revision: 297911
URL: https://svnweb.freebsd.org/changeset/base/297911
Log:
Multiple fixes in VCHI audio driver:
- Pre-buffer audio data to VideoCore so there are no audible glitches when
driver is too late to provide samples
- Start
Author: gonzo
Date: Wed Apr 13 21:39:45 2016
New Revision: 297943
URL: https://svnweb.freebsd.org/changeset/base/297943
Log:
Fix UART3 and UART4 clock offsets.
Original values were copy-pasted from UART1 and UART2
PR: 197037
Submitted by: Scott Ellis
Modified:
head/sys/
Author: gonzo
Date: Tue Apr 19 23:30:22 2016
New Revision: 298305
URL: https://svnweb.freebsd.org/changeset/base/298305
Log:
Fix build for Pi kernels with syscons enabled
Modified:
head/sys/arm/broadcom/bcm2835/bcm2835_fb.c
Modified: head/sys/arm/broadcom/bcm2835/bcm2835_fb.c
===
Author: gonzo
Date: Wed Apr 20 22:38:00 2016
New Revision: 298383
URL: https://svnweb.freebsd.org/changeset/base/298383
Log:
Force framebuffer virtual viewport to be the same as physical
VideoCore reports garbage in viewport geometry fields unless
viewport was set previously by earlier st
Author: gonzo
Date: Thu Apr 21 18:58:06 2016
New Revision: 298428
URL: https://svnweb.freebsd.org/changeset/base/298428
Log:
Use proper type of tag in bcm2835_mbox_fb_init
bcm2835_mbox_fb_init sets configuration so SET_VIRTUAL_OFFSET should be used
instead of GET_VIRTUAL_OFFSET
Submi
Author: gonzo
Date: Tue Apr 26 21:11:01 2016
New Revision: 298666
URL: https://svnweb.freebsd.org/changeset/base/298666
Log:
Add dtb/zynq to generate dtb files for Zynq-based boards
It seems that the only way to supply dtb to loader on Zynq-based
SoCs is to manually generate dtb and place
Author: gonzo
Date: Tue Apr 26 21:11:52 2016
New Revision: 298667
URL: https://svnweb.freebsd.org/changeset/base/298667
Log:
Add dtb/zynq to the list of extra modules required by Zedboard
Modified:
head/sys/arm/conf/ZEDBOARD
Modified: head/sys/arm/conf/ZEDBOARD
==
Author: gonzo
Date: Tue Apr 26 23:09:47 2016
New Revision: 298674
URL: https://svnweb.freebsd.org/changeset/base/298674
Log:
Refactor DTS files for Zynq-based SoCs
- Factor out common part to zynq-7000.dtsi
- Fix problem with Zynq interrupts by using interrupt "triples"
in .dtsi fil
Author: gonzo
Date: Fri Apr 29 20:31:49 2016
New Revision: 298802
URL: https://svnweb.freebsd.org/changeset/base/298802
Log:
Add driver for AM33xx SoC touchscreen
Split ADC driver in two halves: ADC(analog ot digital) and
TSC(touchscreen). Touchscreen driver is fully functional
up to th
}
+
+ free(fdtp);
+ fdtp = new_fdtp;
+ fdtp_size = new_fdtp_size;
+
+ free(overlay);
+}
+
int
fdt_setup_fdtp()
{
Added: head/sys/boot/fdt/fdt_overlay.c
==
--- /dev/null 00:00:00 1970 (empt
Author: gonzo
Date: Tue May 10 20:02:03 2016
New Revision: 299384
URL: https://svnweb.freebsd.org/changeset/base/299384
Log:
Pass device tree node as a part of gpio_pin_get_by_ofw_XXX API
Current API assumes that "gpios" property belongs to the device's node but for
some binding it's not
(r299394)
+++ head/sys/dev/gpio/gpiobacklight.c Wed May 11 00:26:52 2016
(r299395)
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2015 Oleksandr Tymoshenko
+ * Copyright (c) 2015-2016 Oleksandr Tymoshenko
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
Author: gonzo
Date: Wed May 11 00:34:43 2016
New Revision: 299396
URL: https://svnweb.freebsd.org/changeset/base/299396
Log:
Use DEVMETHOD_END instead of its value to indicate end of methods table
Modified:
head/sys/dev/gpio/gpioc.c
head/sys/dev/gpio/gpioiic.c
head/sys/dev/gpio/gpioled.c
0 (empty, because file is newly added)
+++ head/sys/dev/gpio/gpiokeys.cWed May 11 17:57:26 2016
(r299475)
@@ -0,0 +1,1006 @@
+/*-
+ * Copyright (c) 2015-2016 Oleksandr Tymoshenko
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with
Author: gonzo
Date: Wed May 11 18:20:02 2016
New Revision: 299477
URL: https://svnweb.freebsd.org/changeset/base/299477
Log:
Add OF_prop_free function as a counterpart for OF_*prop_alloc
- Introduce new OF API function OF_prop_free to free memory allocated by
OF_getprop_alloc and OF_get
Author: gonzo
Date: Thu May 12 20:12:45 2016
New Revision: 299563
URL: https://svnweb.freebsd.org/changeset/base/299563
Log:
Add gpiobus_release_pin function to release mapped pin
Add gpiobus_release_pin as a counterpart for gpiobus_map_pin. Without it
it's impossible to properly release
Author: gonzo
Date: Thu May 12 20:13:16 2016
New Revision: 299564
URL: https://svnweb.freebsd.org/changeset/base/299564
Log:
Properly release mapped pin in gpio_pin_release
Modified:
head/sys/dev/gpio/ofw_gpiobus.c
Modified: head/sys/dev/gpio/ofw_gpiobus.c
===
Author: gonzo
Date: Thu May 12 20:15:23 2016
New Revision: 299566
URL: https://svnweb.freebsd.org/changeset/base/299566
Log:
Fix detach routine for gpiokeys
- Release pin only when all per=key callouts are stopped
- Unregister keyboard when detaching device node
Modified:
head/sys/dev/
Author: gonzo
Date: Thu May 12 20:20:54 2016
New Revision: 299568
URL: https://svnweb.freebsd.org/changeset/base/299568
Log:
Add loadable module for gpiokeys
Added:
head/sys/modules/gpio/gpiokeys/
head/sys/modules/gpio/gpiokeys/Makefile (contents, props changed)
Modified:
head/sys/modul
Ian Lepore (i...@freebsd.org) wrote:
> On Thu, 2016-05-12 at 20:12 +0000, Oleksandr Tymoshenko wrote:
> > Author: gonzo
> > Date: Thu May 12 20:12:45 2016
> > New Revision: 299563
> > URL: https://svnweb.freebsd.org/changeset/base/299563
> >
> > Log:
&g
Author: gonzo
Date: Thu Mar 19 01:50:24 2020
New Revision: 359113
URL: https://svnweb.freebsd.org/changeset/base/359113
Log:
MFC r352775-r352776
r352775:
snd_hda: Add Intel Cannon Lake support
Add PCI ids for Intel Cannon Lake PCH
Tested on:HP Spectre x360 13-p0043dx
PR:
Author: gonzo
Date: Thu Mar 19 02:22:08 2020
New Revision: 359114
URL: https://svnweb.freebsd.org/changeset/base/359114
Log:
MFC r352775-r352776
r352775:
snd_hda: Add Intel Cannon Lake support
Add PCI ids for Intel Cannon Lake PCH
Tested on:HP Spectre x360 13-p0043dx
PR:
Author: gonzo
Date: Fri May 13 22:05:16 2016
New Revision: 299702
URL: https://svnweb.freebsd.org/changeset/base/299702
Log:
Use OF_prop_free instead of direct call to free(9)
Modified:
head/sys/arm/at91/at91_pinctrl.c
head/sys/arm/freescale/imx/imx_iomux.c
head/sys/arm/mv/mv_localbus.c
Author: gonzo
Date: Fri May 13 22:28:02 2016
New Revision: 299703
URL: https://svnweb.freebsd.org/changeset/base/299703
Log:
Use OF_prop_free instead of direct call to free(9)
Approved by: jmcneill
Modified:
head/sys/arm/allwinner/a10_gpio.c
head/sys/arm/allwinner/clk/aw_cpuclk.c
he
Author: gonzo
Date: Sat May 14 04:59:36 2016
New Revision: 299714
URL: https://svnweb.freebsd.org/changeset/base/299714
Log:
Use OF_prop_free instead of direct call to free(9)
Reviewed by: mmel@
Modified:
head/sys/dev/extres/clk/clk.c
head/sys/dev/extres/clk/clk_fixed.c
head/sys/dev
Author: gonzo
Date: Sat May 14 05:00:17 2016
New Revision: 299715
URL: https://svnweb.freebsd.org/changeset/base/299715
Log:
Use OF_prop_free instead of direct call to free(9)
Reviewed by: mmel@
Modified:
head/sys/arm/nvidia/as3722_gpio.c
head/sys/arm/nvidia/tegra124/tegra124_coretemp
Author: gonzo
Date: Sat May 14 18:44:30 2016
New Revision: 299747
URL: https://svnweb.freebsd.org/changeset/base/299747
Log:
Use OF_prop_free instead of direct call to free(9)
Modified:
head/sys/dev/altera/avgen/altera_avgen_fdt.c
head/sys/dev/usb/controller/ehci_fsl.c
Modified: head/sys/d
Author: gonzo
Date: Sat May 14 20:05:35 2016
New Revision: 299755
URL: https://svnweb.freebsd.org/changeset/base/299755
Log:
Use OF_prop_free instead of direct call to free(9)
Reviewed by: sgalabov
Modified:
head/sys/mips/mediatek/fdt_reset.c
head/sys/mips/mediatek/mtk_pinctrl.c
Modi
Author: gonzo
Date: Sat May 14 20:06:38 2016
New Revision: 299756
URL: https://svnweb.freebsd.org/changeset/base/299756
Log:
Use OF_prop_free instead of direct call to free(9)
Reviewed by: jhibbits
Modified:
head/sys/dev/iicbus/adt746x.c
head/sys/powerpc/mpc85xx/lbc.c
head/sys/power
Author: gonzo
Date: Wed May 18 23:39:31 2016
New Revision: 300173
URL: https://svnweb.freebsd.org/changeset/base/300173
Log:
Use OF_prop_free instead of direct call to free(9)
Reviewed by: marius
Modified:
head/sys/dev/atkbdc/atkbdc_ebus.c
head/sys/dev/le/lebuffer_sbus.c
head/sys/sp
Author: gonzo
Date: Wed May 18 23:41:58 2016
New Revision: 300175
URL: https://svnweb.freebsd.org/changeset/base/300175
Log:
Use OF_prop_free instead of direct call to free(9)
Reviewed by: ganbold
Modified:
head/sys/arm/amlogic/aml8726/aml8726_ccm.c
head/sys/arm/amlogic/aml8726/aml872
Author: gonzo
Date: Thu May 19 20:51:47 2016
New Revision: 300230
URL: https://svnweb.freebsd.org/changeset/base/300230
Log:
Fixed memory leak in FDT overlay handling code
Free both overlay and new fdt before returning after fdt_open_into error
PR: 209634
Submitted by: David B
Author: gonzo
Date: Sat May 28 00:22:39 2016
New Revision: 300894
URL: https://svnweb.freebsd.org/changeset/base/300894
Log:
Add gpiokeys to the list of GPIO modules built only if FDT is enabled
Modified:
head/sys/modules/gpio/Makefile
Modified: head/sys/modules/gpio/Makefile
===
Gleb Smirnoff (gleb...@freebsd.org) wrote:
> Author: glebius
> Date: Fri Aug 30 00:05:04 2019
> New Revision: 351616
> URL: https://svnweb.freebsd.org/changeset/base/351616
>
> Log:
> Use mbuf queue instead of ifqueue in USB network drivers.
Hi Gleb,
This change broke NFS root on RPi. I suspec
Hans Petter Selasky (h...@selasky.org) wrote:
> On 2019-09-02 02:29, Oleksandr Tymoshenko wrote:
> > Gleb Smirnoff (gleb...@freebsd.org) wrote:
> >> Author: glebius
> >> Date: Fri Aug 30 00:05:04 2019
> >> New Revision: 351616
> >> URL: htt
Author: gonzo
Date: Wed Aug 5 18:21:22 2020
New Revision: 363926
URL: https://svnweb.freebsd.org/changeset/base/363926
Log:
Add flag for SYSCON-controlled clocks on Rockhip platform
Ethernet clocks on RK3328 are controlled by SYSCON registers, so add
RK_CLK_COMPOSITE_GRF flag to indicate
Author: gonzo
Date: Wed Aug 5 18:22:24 2020
New Revision: 363927
URL: https://svnweb.freebsd.org/changeset/base/363927
Log:
Add clocks for ethernet controllers on RK3328
Reviewed by: manu
Differential Revision:https://reviews.freebsd.org/D25918
Modified:
head/sys/arm64/rockch
Author: gonzo
Date: Mon Aug 10 19:37:06 2020
New Revision: 364088
URL: https://svnweb.freebsd.org/changeset/base/364088
Log:
Improve Rockchip's integration of if_dwc
- Do not rely on U-Boot for clocks configuration, enable and set frequencies
in the driver's attach method.
- Adjust
Ed Maste (ema...@freebsd.org) wrote:
> Author: emaste
> Date: Thu Aug 13 23:13:05 2020
> New Revision: 364222
> URL: https://svnweb.freebsd.org/changeset/base/364222
>
> Log:
> flua: support "require" for binary objects in the base system
>
> Export symbols from flua, and enable dlopen.
>
Author: gonzo
Date: Fri Aug 28 20:25:03 2020
New Revision: 364938
URL: https://svnweb.freebsd.org/changeset/base/364938
Log:
MFC r357250, r363926-r363927
r357250 (by ganbold@):
Add USB3 related clock definitions for Rockchip RK3328 SoC.
Reviewed by: manu
r363926:
Add flag for
Author: gonzo
Date: Fri Aug 28 20:37:57 2020
New Revision: 364939
URL: https://svnweb.freebsd.org/changeset/base/364939
Log:
MFC r363187:
Enable EFI system partition on amd64 and i386 VM images
EFI support is a hard requirement for generating Hyper-V Gen2 VM images.
Reviewed by:
Gleb Smirnoff (gleb...@freebsd.org) wrote:
> Author: glebius
> Date: Thu Oct 10 23:42:55 2019
> New Revision: 353419
> URL: https://svnweb.freebsd.org/changeset/base/353419
>
> Log:
> Provide new KPI for network drivers to access lists of interface
> addresses. The KPI doesn't reveal neither
Gleb Smirnoff (gleb...@freebsd.org) wrote:
> On Fri, Aug 28, 2020 at 02:31:30PM -0700, Oleksandr Tymoshenko wrote:
> O> Gleb Smirnoff (gleb...@freebsd.org) wrote:
> O> > Author: glebius
> O> > Date: Thu Oct 10 23:42:55 2019
> O> > New Revision: 353419
&g
Author: gonzo
Date: Fri Sep 4 00:25:02 2020
New Revision: 365322
URL: https://svnweb.freebsd.org/changeset/base/365322
Log:
MFC r363122:
Assigned clocks: fix off-by-one bug, don't leak allocated memory.
MFC after: 1 week
Modified:
stable/12/sys/dev/extres/clk/clk.c
Directory Pr
801 - 882 of 882 matches
Mail list logo