Author: ian
Date: Tue Jun 18 00:11:00 2019
New Revision: 349164
URL: https://svnweb.freebsd.org/changeset/base/349164
Log:
Remove everything related to channels from the pwmc public interface, now
that there is a pwmc(4) instance per channel and the channel number is
maintained as a driver i
Author: ian
Date: Tue Jun 18 00:17:10 2019
New Revision: 349165
URL: https://svnweb.freebsd.org/changeset/base/349165
Log:
Explain the relationship between PWM hardware channels being controlled and
pwmc(4) device filenames. Also, use uppercase PWM when the term is being
used as an acronym,
Author: ian
Date: Tue Jun 18 01:15:00 2019
New Revision: 349166
URL: https://svnweb.freebsd.org/changeset/base/349166
Log:
Rearrange the argument checking and processing so that enable and disable
can be combined with configuring the period and duty cycle (the same ioctl
sets all 3 values at
Author: ian
Date: Tue Jun 18 02:27:30 2019
New Revision: 349167
URL: https://svnweb.freebsd.org/changeset/base/349167
Log:
Oops, it seems I left out the word 'cycle', fix it.
Reported by: rpokala@
Modified:
head/usr.sbin/pwm/pwm.8
Modified: head/usr.sbin/pwm/pwm.8
=
)
+++ head/share/man/man4/pwmc.4 Tue Jun 18 04:32:19 2019(r349168)
@@ -0,0 +1,212 @@
+.\"
+.\" Copyright (c) 2019 Ian Lepore
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the followin
Author: ian
Date: Tue Jun 18 17:05:05 2019
New Revision: 349174
URL: https://svnweb.freebsd.org/changeset/base/349174
Log:
Handle labels specified with hints even on FDT systems. Hints are the
easiest thing for a user to control (via loader.conf or kenv+kldload), so
handle them in addition
On Thu, 2019-06-20 at 14:35 +, Alan Somers wrote:
> Author: asomers
> Date: Thu Jun 20 14:35:28 2019
> New Revision: 349233
> URL: https://svnweb.freebsd.org/changeset/base/349233
>
> Log:
> #include from sys/filio.h
>
> This fixes world build after r349231
>
> Reported by:
On Thu, 2019-06-20 at 09:29 -0600, Alan Somers wrote:
> On Thu, Jun 20, 2019 at 9:14 AM Ian Lepore wrote:
> >
> > On Thu, 2019-06-20 at 14:35 +, Alan Somers wrote:
> > > Author: asomers
> > > Date: Thu Jun 20 14:35:28 2019
> > > New Revision: 34
Author: ian
Date: Fri Jun 21 14:01:02 2019
New Revision: 349269
URL: https://svnweb.freebsd.org/changeset/base/349269
Log:
Some mundane tweaks and cleanups to help de-clutter the diffs of some
upcoming functional changes.
Add an ofw_compat_data table for probing compat strings, and use it
Author: ian
Date: Fri Jun 21 14:24:33 2019
New Revision: 349270
URL: https://svnweb.freebsd.org/changeset/base/349270
Log:
Add support for the PWM(9) API. This allows configuring the pwm output using
pwm(9), but also maintains the historical sysctl config interface for
compatiblity with exi
Author: ian
Date: Fri Jun 21 14:46:43 2019
New Revision: 349271
URL: https://svnweb.freebsd.org/changeset/base/349271
Log:
Catch up with recent changes in pwmbus(9). The pwm(9) and pwmbus(9)
interfaces were unified into pwmbus(9), and the PWMBUS_CHANNEL_MAX method
was renamed PWMBUS_CHANNEL
Author: ian
Date: Fri Jun 21 15:12:17 2019
New Revision: 349272
URL: https://svnweb.freebsd.org/changeset/base/349272
Log:
Do some general cleanup and light wordsmithing.
Sort methods alphabetically. Wrap long lines. Start sentences on a new
line. Remove contractions (not because it's
Author: ian
Date: Fri Jun 21 15:44:58 2019
New Revision: 349273
URL: https://svnweb.freebsd.org/changeset/base/349273
Log:
Add pwm to the armv7 GENERIC kernel, it's now used by TI and Allwinner.
Modified:
head/sys/arm/conf/GENERIC
Modified: head/sys/arm/conf/GENERIC
=
Author: ian
Date: Sun Jun 23 17:20:39 2019
New Revision: 349316
URL: https://svnweb.freebsd.org/changeset/base/349316
Log:
Remove some unused header files from the ad7418 driver.
Modified:
head/sys/dev/iicbus/ad7418.c
Modified: head/sys/dev/iicbus/ad7418.c
===
Author: ian
Date: Sun Jun 23 17:23:56 2019
New Revision: 349317
URL: https://svnweb.freebsd.org/changeset/base/349317
Log:
Add the rtc8583 driver to conf/files. Also, move sy8106a from
file.allwinner to conf/files... it's not allwinner-specific, some day
other platforms could use the same r
Author: ian
Date: Sun Jun 23 17:38:30 2019
New Revision: 349318
URL: https://svnweb.freebsd.org/changeset/base/349318
Log:
The sy8106a and syr827 drviers require FDT and the ext_resources subsystem.
Modified:
head/sys/conf/files
Modified: head/sys/conf/files
=
Author: ian
Date: Sun Jun 23 17:39:13 2019
New Revision: 349319
URL: https://svnweb.freebsd.org/changeset/base/349319
Log:
Add some i2c slave-device drivers that were missing from NOTES.
Modified:
head/sys/conf/NOTES
Modified: head/sys/conf/NOTES
=
Author: ian
Date: Sun Jun 23 21:17:41 2019
New Revision: 349325
URL: https://svnweb.freebsd.org/changeset/base/349325
Log:
Allow compiling ukbdmap.h on arm, since it appears to work fine.
Modified:
head/sys/conf/files.arm
Modified: head/sys/conf/files.arm
Author: ian
Date: Mon Jun 24 01:42:09 2019
New Revision: 349327
URL: https://svnweb.freebsd.org/changeset/base/349327
Log:
Build an armv7 LINT kernel in addition to armv5 LINT. You might think this
had been done years ago. I did. All this time we've only compiled a LINT
kernel for TARGET_
Author: ian
Date: Mon Jun 24 02:27:17 2019
New Revision: 349328
URL: https://svnweb.freebsd.org/changeset/base/349328
Log:
The gpiopps(4) driver currently has probe and attach code only for FDT based
systems, so conditionalize it accordingly in conf/files.
Modified:
head/sys/conf/files
Mod
Author: ian
Date: Mon Jun 24 02:30:05 2019
New Revision: 349329
URL: https://svnweb.freebsd.org/changeset/base/349329
Log:
Add gpio(4) and related drivers to NOTES.
Modified:
head/sys/conf/NOTES
Modified: head/sys/conf/NOTES
===
Author: ian
Date: Mon Jun 24 02:39:56 2019
New Revision: 349330
URL: https://svnweb.freebsd.org/changeset/base/349330
Log:
Add pwm devices to NOTES.
Modified:
head/sys/conf/NOTES
Modified: head/sys/conf/NOTES
==
---
On Wed, 2019-06-26 at 17:17 +, Andriy Gapon wrote:
> +MODULE_DEPEND(owc_gpiobust, ow, 1, 1, 1);
Looks like a typo there.
-- Ian
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send a
Author: ian
Date: Sun Jul 7 17:15:45 2019
New Revision: 349807
URL: https://svnweb.freebsd.org/changeset/base/349807
Log:
Eliminate spurious periodic.daily error message for rotating accounting log.
In 2011, r218961 removed local code for rotating logs in favor of using the
rotate_log co
Author: ian
Date: Mon Jul 8 18:29:37 2019
New Revision: 349839
URL: https://svnweb.freebsd.org/changeset/base/349839
Log:
Call device_unbusy() on the error exit path, because if iicbus_request_bus()
returns an error, iicbus_release_bus() is not going to be called.
Modified:
head/sys/dev/ii
Author: ian
Date: Mon Jul 8 20:26:56 2019
New Revision: 349850
URL: https://svnweb.freebsd.org/changeset/base/349850
Log:
Restore the ability for i2c slave devices to do IO from their probe method.
r348164 added code to iicbus_request_bus/iicbus_release_bus to automatically
call device_b
Author: ian
Date: Wed Jul 10 03:45:23 2019
New Revision: 349873
URL: https://svnweb.freebsd.org/changeset/base/349873
Log:
Add pwm.9, it was also deleted during the big round of pwm changes.
Modified:
head/ObsoleteFiles.inc
Modified: head/ObsoleteFiles.inc
===
Author: ian
Date: Wed Jul 10 14:34:52 2019
New Revision: 349887
URL: https://svnweb.freebsd.org/changeset/base/349887
Log:
De-pollute arm's sysarch.h.
Instead of including stdint.h for uintptr_t, include sys/_types.h and use
__types for everything that isn't a native C keyword type.
Author: ian
Date: Wed Jul 10 19:32:50 2019
New Revision: 349891
URL: https://svnweb.freebsd.org/changeset/base/349891
Log:
Reorganize the SRCS lists as one file per line, and then alphabetize them.
No functional changes.
Modified:
head/lib/libc/arm/gen/Makefile.inc
Modified: head/lib/libc/
l 13 15:34:29 2019
(r349972)
@@ -0,0 +1,77 @@
+.\" Copyright (c) 2019 Ian Lepore
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redi
Author: ian
Date: Sat Jul 13 16:07:38 2019
New Revision: 349974
URL: https://svnweb.freebsd.org/changeset/base/349974
Log:
Limit access to system accounting files.
In 2013 the security chapter of the Handbook was updated in r42501 to
suggest limiting access to the system accounting file [
Author: ian
Date: Sat Jul 13 16:48:27 2019
New Revision: 349976
URL: https://svnweb.freebsd.org/changeset/base/349976
Log:
Add an entry mentioning the permission/mode change to daily accounting files.
Modified:
head/UPDATING
Modified: head/UPDATING
===
Author: ian
Date: Mon Jul 15 21:40:58 2019
New Revision: 350015
URL: https://svnweb.freebsd.org/changeset/base/350015
Log:
Fix nxprtc(4) on systems that support i2c repeat-start correctly.
An obscure footnote in the datasheets for the PCx2127, PCx2129, and
PCF8523 rtc chips states that th
Author: ian
Date: Mon Jul 15 21:47:40 2019
New Revision: 350016
URL: https://svnweb.freebsd.org/changeset/base/350016
Log:
In nxprtc(4), use the countdown timer for better timekeeping resolution
on PCx2129 chips too.
The datasheet for the PCx2129 chips says that there is only a watchdog
Author: ian
Date: Thu Jul 18 01:30:56 2019
New Revision: 350104
URL: https://svnweb.freebsd.org/changeset/base/350104
Log:
Handle the PCF2127 RTC chip the same as PCF2129 when init'ing the chip.
This affects the detection of 24-hour vs AM/PM mode... the ampm bit is in a
different location
Author: ian
Date: Thu Jul 18 01:37:00 2019
New Revision: 350106
URL: https://svnweb.freebsd.org/changeset/base/350106
Log:
Fix a paste-o, set is212x = false for other chip types. Doh!
Modified:
head/sys/dev/iicbus/nxprtc.c
Modified: head/sys/dev/iicbus/nxprtc.c
=
On Thu, 2019-07-18 at 21:41 +, Brooks Davis wrote:
> On Thu, Jul 18, 2019 at 09:33:56PM +, Brooks Davis wrote:
> > Author: brooks
> > Date: Thu Jul 18 21:33:55 2019
> > New Revision: 350116
> > URL: https://svnweb.freebsd.org/changeset/base/350116
> >
> > Log:
> > Document that setmode(3
Author: ian
Date: Sat Jul 20 21:10:27 2019
New Revision: 350185
URL: https://svnweb.freebsd.org/changeset/base/350185
Log:
Rewrite the nxprtc chip init to extend battery life by using power-saving
features offered by the chips.
For 2127 and 2129 chips, fix the detection of when chip-init
On Sat, 2019-07-20 at 20:56 +, Conrad Meyer wrote:
> Author: cem
> Date: Sat Jul 20 20:56:31 2019
> New Revision: 350184
> URL: https://svnweb.freebsd.org/changeset/base/350184
>
> Log:
> motd: Generate from template to /var/run
>
> Update login(1), its manual pages, similar utilities,
Author: ian
Date: Sun Jul 21 17:14:39 2019
New Revision: 350203
URL: https://svnweb.freebsd.org/changeset/base/350203
Log:
Add support for setting the aging/frequency-offset register via sysctl.
The 2127 and 2129 chips support a frequency tuning value in the range of
-7 through +8 PPM; ad
Author: ian
Date: Mon Jul 22 22:41:44 2019
New Revision: 350231
URL: https://svnweb.freebsd.org/changeset/base/350231
Log:
Correct spelling, partion -> partition.
Modified:
head/sys/dev/mmc/mmcsd.c
Modified: head/sys/dev/mmc/mmcsd.c
===
Author: ian
Date: Thu Jul 25 15:31:15 2019
New Revision: 350324
URL: https://svnweb.freebsd.org/changeset/base/350324
Log:
Fix indentation (spaces->tab).
Reported by: garga@
Modified:
head/UPDATING
Modified: head/UPDATING
On Thu, 2019-07-25 at 10:27 -0300, Renato Botelho wrote:
> On 13/07/19 13:48, Ian Lepore wrote:
> > Author: ian
> > Date: Sat Jul 13 16:48:27 2019
> > New Revision: 349976
> > URL: https://svnweb.freebsd.org/changeset/base/349976
> >
> > Log:
> >
Author: ian
Date: Fri Jul 26 17:58:46 2019
New Revision: 350361
URL: https://svnweb.freebsd.org/changeset/base/350361
Log:
Re-wrap the text at 80 columns after fixing the indent in the prior commit.
Modified:
head/UPDATING
Modified: head/UPDATING
=
Author: ian
Date: Tue Jul 30 15:51:28 2019
New Revision: 350445
URL: https://svnweb.freebsd.org/changeset/base/350445
Log:
Create the /var/account dir with mode 0750; this is a followup to r349974.
The rc.d/account script contains code to create the /var/account dir, so
it hadn't occurred
On Thu, 2019-08-01 at 14:42 +, Ed Maste wrote:
> Author: emaste
> Date: Thu Aug 1 14:42:41 2019
> New Revision: 350505
> URL: https://svnweb.freebsd.org/changeset/base/350505
>
> Log:
> objdump: be explicit that GNU objdump that will be removed
>
> We may install llvm-objdump as objdum
On Thu, 2019-08-01 at 10:39 -0700, John Baldwin wrote:
> On 7/31/19 8:13 PM, Ed Maste wrote:
> > On Thu, 1 Aug 2019 at 12:51, Rodney W. Grimes <
> > free...@gndrsh.dnsmgr.net> wrote:
> > >
> > > That would be fine, the important thing is that the
> > > r350505 gets listed in the file,
> >
> > I d
/man4/ads111x.4 Mon Aug 5 15:56:44 2019
(r350591)
@@ -0,0 +1,240 @@
+.\"
+.\" Copyright (c) 2019 Ian Lepore
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
On Wed, 2019-08-07 at 21:20 +, Andriy Gapon wrote:
> Author: avg
> Date: Wed Aug 7 21:20:25 2019
> New Revision: 350702
> URL: https://svnweb.freebsd.org/changeset/base/350702
>
> Log:
> rc.8: fix a typo in r350701
>
> I wronlgy expected that igor(1) checks spelling of all words.
>
On Thu, 2019-08-08 at 03:16 +, Justin Hibbits wrote:
> Author: jhibbits
> Date: Thu Aug 8 03:16:32 2019
> New Revision: 350737
> URL: https://svnweb.freebsd.org/changeset/base/350737
>
> Log:
> Change autounmountd(8) to use time_t for duration instead of double
>
> Summary:
> autounm
Author: ian
Date: Sat Aug 10 17:14:35 2019
New Revision: 350838
URL: https://svnweb.freebsd.org/changeset/base/350838
Log:
Switch the am335x_pmic driver to using iicdev_readfrom/writeto.
PR: 239697
Submitted by: Chuhong Yuan
Modified:
head/sys/arm/ti/am335x/am335x_pmic.c
Mod
Author: ian
Date: Sat Aug 10 17:28:14 2019
New Revision: 350840
URL: https://svnweb.freebsd.org/changeset/base/350840
Log:
Garbage collect the no-longer-necessary MAX_IIC_DATA_SIZE (there is not a
buffer allocated at that fixed size anymore).
Modified:
head/sys/arm/ti/am335x/am335x_pmic.c
Author: ian
Date: Sat Aug 10 17:48:11 2019
New Revision: 350841
URL: https://svnweb.freebsd.org/changeset/base/350841
Log:
When responding to an interrupt in the am335x_pmic driver, use a taskqueue
thread to do the work that involves i2c IO, which sleeps while the IO is
in progress.
Modifie
Author: ian
Date: Sat Aug 10 20:03:14 2019
New Revision: 350847
URL: https://svnweb.freebsd.org/changeset/base/350847
Log:
Allow the sdhci timeout sysctl var to be set as a tunable. Also, add a
missing newline in a warning printf.
Modified:
head/sys/dev/sdhci/sdhci.c
Modified: head/sys/de
Author: ian
Date: Sat Aug 10 20:05:15 2019
New Revision: 350848
URL: https://svnweb.freebsd.org/changeset/base/350848
Log:
The am335x_ehrpwm driver now requires the pwmbus_if interface, add it.
Modified:
head/sys/arm/ti/am335x/files.am335x
Modified: head/sys/arm/ti/am335x/files.am335x
==
Author: ian
Date: Sat Aug 10 20:08:37 2019
New Revision: 350849
URL: https://svnweb.freebsd.org/changeset/base/350849
Log:
Remove use of intr_config_hook from the am335x_pmic and tda19988 drivers.
Long ago this was needed, but now low-level i2c controller drivers cleverly
defer attachment of
Author: ian
Date: Sun Aug 11 23:19:56 2019
New Revision: 350879
URL: https://svnweb.freebsd.org/changeset/base/350879
Log:
Revert r350841. I didn't realize that on this chip, reading the interrupt
status register clears pending interrupts. By moving that code out of the
interrupt handler i
Author: ian
Date: Tue Aug 13 03:49:53 2019
New Revision: 350971
URL: https://svnweb.freebsd.org/changeset/base/350971
Log:
Fix the driver name in ads111x.4, and hook the manpage up to the build.
The driver was originally written with the name ads1115, but at the last
minute it got renamed
Author: ian
Date: Tue Aug 13 15:38:05 2019
New Revision: 350988
URL: https://svnweb.freebsd.org/changeset/base/350988
Log:
Add PNP_INFO to the gpiopps driver.
Modified:
head/sys/dev/gpio/gpiopps.c
Modified: head/sys/dev/gpio/gpiopps.c
=
On Sat, 2020-06-20 at 07:57 -0600, Warner Losh wrote:
> On Sat, Jun 20, 2020 at 7:27 AM Hans Petter Selasky wrote:
>
> > On 2020-06-20 13:10, Rodney W. Grimes wrote:
> > > > Author: imp
> > > > Date: Sat Jun 20 04:19:17 2020
> > > > New Revision: 362422
> > > > URL:https://svnweb.freebsd.org/chan
On Mon, 2020-06-29 at 14:26 -0600, Warner Losh wrote:
> On Mon, Jun 29, 2020, 2:15 PM Ravi Pokala
> wrote:
>
> > -Original Message-
> > From: on behalf of Hans Petter
> > Selasky
> >
> > Date: 2020-06-29, Monday at 06:08
> > To: , , <
> > svn-src-head@freebsd.org>
> > Subject: svn commi
Author: ian
Date: Sun Jul 19 18:53:19 2020
New Revision: 363330
URL: https://svnweb.freebsd.org/changeset/base/363330
Log:
The ds3231 RTC chip bitmask values for 12- versus 24-hour mode were reversed,
flip them so that times in the 20:00:00 to 23:59:59 range read correctly.
Reported by:
On Fri, 2020-07-24 at 14:17 +, Mateusz Piotrowski wrote:
> Author: 0mp (doc,ports committer)
> Date: Fri Jul 24 14:17:37 2020
> New Revision: 363473
> URL: https://svnweb.freebsd.org/changeset/base/363473
>
> [...]
> @@ -237,8 +237,13 @@ The
> .Ar name
> argument is the
> .Xr basename 1
> -
Author: ian
Date: Sun Jul 26 17:50:39 2020
New Revision: 363569
URL: https://svnweb.freebsd.org/changeset/base/363569
Log:
Remove commented-out lines describing the old never-implemented -t option.
In 2018, r338094 removed the commented-out code for supporting the -t
command line option w
Author: ian
Date: Sun Jul 26 18:33:29 2020
New Revision: 363576
URL: https://svnweb.freebsd.org/changeset/base/363576
Log:
Describe the value in the 're' column of vmstat(8) in terms of freebsd's vm
implementation. The old description was left over from the 4.4 BSD Lite
import in 1994, and
On Fri, 2020-08-07 at 17:32 +0200, Emmanuel Vadot wrote:
> On Fri, 7 Aug 2020 08:26:00 -0700 (PDT)
> "Rodney W. Grimes" wrote:
>
> > > Author: manu
> > > Date: Fri Aug 7 12:19:21 2020
> > > New Revision: 364010
> > > URL: https://svnweb.freebsd.org/changeset/base/364010
> > >
> > > Log:
> > >
On Sat, 2020-08-08 at 11:08 +0100, Alexander Richardson wrote:
> On Sat, 8 Aug 2020 at 02:19, Mateusz Guzik wrote:
> >
> > This broke i386 builds:
> >
> > /usr/src/usr.bin/chpass/field.c:175:15: error: incompatible pointer
> > types passing
> > '_bootstrap_time_t *' (aka 'unsigned long lon
On Wed, 2020-08-12 at 09:24 -0700, Rodney W. Grimes wrote:
> > On 12 Aug 2020, at 17:10, Rodney W. Grimes <
> > free...@gndrsh.dnsmgr.net> wrote:
> > >
> > > > Author: arichardson
> > > > Date: Wed Aug 12 15:49:06 2020
> > > > New Revision: 364166
> > > > URL: https://svnweb.freebsd.org/changeset/
On Wed, 2020-08-19 at 13:54 -0400, Shawn Webb wrote:
> On Wed, Aug 19, 2020 at 11:51:10AM -0600, Warner Losh wrote:
> > On Wed, Aug 19, 2020 at 11:48 AM Shawn Webb <
> > shawn.w...@hardenedbsd.org>
> > wrote:
> >
> > > On Wed, Aug 19, 2020 at 11:44:42AM -0600, Warner Losh wrote:
> > > > On Wed, Au
On Wed, 2020-08-26 at 19:04 +0200, Mateusz Guzik wrote:
> On 8/26/20, Jung-uk Kim wrote:
> > Author: jkim
> > Date: Wed Aug 26 16:55:28 2020
> > New Revision: 364822
> > URL: https://svnweb.freebsd.org/changeset/base/364822
> >
> > Log:
> > Fix Clang version detection.
> >
> > We prepend "Fr
On Tue, 2020-11-17 at 14:41 -0800, Rodney W. Grimes wrote:
> > On Sat, Nov 14, 2020 at 11:20 AM Mateusz Piotrowski <
> > 0...@freebsd.org> wrote:
> > >
> > > Hello Rodney,
> > >
> > > On 11/14/20 4:59 PM, Rodney W. Grimes wrote:
> > > > > Author: 0mp (doc,ports committer)
> > > > > Date: Sat Nov
On Wed, 2020-11-18 at 15:37 -0800, John Baldwin wrote:
> On 11/18/20 2:16 PM, Mateusz Guzik wrote:
> > On 11/17/20, John Baldwin wrote:
> > > On 11/14/20 11:22 AM, Mateusz Guzik wrote:
> >
> > Interested parties can check the consumer (also seen in the diff)
> > to
> > see this is for consistency
On Sat, 2020-11-21 at 18:20 +, Vincenzo Maffione wrote:
> Author: vmaffione
> Date: Sat Nov 21 18:20:21 2020
> New Revision: 367920
...
> +.Bd -literal -offset intent
>
s/intent/indent/ ?
-- Ian
___
svn-src-head@freebsd.org mailing list
https://li
On Tue, 2020-11-24 at 17:52 +, Emmanuel Vadot wrote:
> Author: manu
> Date: Tue Nov 24 17:52:01 2020
> New Revision: 367994
> URL: https://svnweb.freebsd.org/changeset/base/367994
>
> Log:
> Release: arm: Remove config for old boards
>
> All those board are impossible to buy nowadays an
On Tue, 2020-11-24 at 20:12 +0100, Emmanuel Vadot wrote:
> On Tue, 24 Nov 2020 11:56:53 -0700
> Ian Lepore wrote:
>
> > On Tue, 2020-11-24 at 17:52 +, Emmanuel Vadot wrote:
> > > Author: manu
> > > Date: Tue Nov 24 17:52:01 2020
> >
Author: ian
Date: Wed Nov 25 15:45:20 2020
New Revision: 368021
URL: https://svnweb.freebsd.org/changeset/base/368021
Log:
Only attach the ti_scm_syscon driver when running on a compatible TI chip.
This prevents attaching on non-TI systems in the GENERIC kernel.
Reviewed by: manu@, mmel@
Author: ian
Date: Wed Nov 25 18:09:01 2020
New Revision: 368026
URL: https://svnweb.freebsd.org/changeset/base/368026
Log:
A couple small fixes for the imx6_sdma driver...
Attach after interrupt controllers, since the attach function tries to
set up an interrupt handler.
Check for th
Author: ian
Date: Wed Nov 25 19:08:22 2020
New Revision: 368028
URL: https://svnweb.freebsd.org/changeset/base/368028
Log:
Add the standard extres pseudo devices to the IMX6 kernel config.
Some imx6 drivers are being converted to use features that weren't available
when they were first wr
Author: ian
Date: Wed Nov 25 19:10:20 2020
New Revision: 368029
URL: https://svnweb.freebsd.org/changeset/base/368029
Log:
Convert the imx6_snvs RTC driver to access registers via the syscon device.
This is required for it to work correctly in the GENERIC kernel.
Modified:
head/sys/arm/free
Author: ian
Date: Wed Nov 25 20:05:05 2020
New Revision: 368030
URL: https://svnweb.freebsd.org/changeset/base/368030
Log:
Extend the imx6 gpc->gic interrupt controller fixup of fdt data at runtime
to work with the pmu and tempmon nodes as well as the soc node. This allows
interrupts to wor
Author: ian
Date: Thu Nov 26 01:40:04 2020
New Revision: 368042
URL: https://svnweb.freebsd.org/changeset/base/368042
Log:
Add the firmware blob required to use the sdma hardware in the imx6
processor, and its associated license text (which is similar to a
bsd-3-clause, but with a prohibitio
On Sun, 2020-11-29 at 19:20 -0500, Shawn Webb wrote:
> On Sun, Nov 29, 2020 at 07:38:04PM +, Matt Macy wrote:
> > Author: mmacy
> > Date: Sun Nov 29 19:38:03 2020
> > New Revision: 368163
> > URL: https://svnweb.freebsd.org/changeset/base/368163
> >
> > Log:
> > Import kernel WireGuard suppo
On Mon, 2020-11-30 at 14:51 +, Michal Meloun wrote:
> Author: mmel
> Date: Mon Nov 30 14:51:48 2020
> New Revision: 368187
> URL: https://svnweb.freebsd.org/changeset/base/368187
>
> Log:
> Unbreak r368167 in userland. Decorate unused arguments.
>
> Reported by:kp, tuexen, jenki
On Mon, 2020-11-30 at 17:56 +0100, Michal Meloun wrote:
>
> On 30.11.2020 17:02, Ian Lepore wrote:
> > On Mon, 2020-11-30 at 14:51 +, Michal Meloun wrote:
> > > Author: mmel
> > > Date: Mon Nov 30 14:51:48 2020
> > > New Revision: 368187
> > >
Author: ian
Date: Sat Dec 12 18:34:15 2020
New Revision: 368585
URL: https://svnweb.freebsd.org/changeset/base/368585
Log:
Provide userland notification of gpio pin changes ("userland gpio
interrupts").
This is an import of the Google Summer of Code 2018 project completed by
Christian Kr
On Thu, 2020-12-17 at 18:22 +0200, Konstantin Belousov wrote:
> On Thu, Dec 17, 2020 at 01:01:01PM +, Jessica Clarke wrote:
> > On 17 Dec 2020, at 12:53, Konstantin Belousov
> > wrote:
> > >
> > > On Thu, Dec 17, 2020 at 12:41:47PM +, Mateusz Piotrowski
> > > wrote:
> > > > Author: 0mp (d
On Mon, 2019-12-02 at 20:51 +, Vincenzo Maffione wrote:
> Author: vmaffione
> Date: Mon Dec 2 20:51:46 2019
> New Revision: 355301
> URL: https://svnweb.freebsd.org/changeset/base/355301
>
> Log:
> bhyve: uniform printf format string newlines
>
> Some of the printf statements only use
On Mon, 2019-12-02 at 22:35 +0100, Vincenzo Maffione wrote:
> Il giorno lun 2 dic 2019 alle ore 22:14 Ian Lepore
> ha
> scritto:
>
> > On Mon, 2019-12-02 at 20:51 +, Vincenzo Maffione wrote:
> > > Author: vmaffione
> > > Date: Mon Dec 2 20:51:46 2019
On Mon, 2019-12-02 at 23:22 -0800, Rodney W. Grimes wrote:
> > On Mon, 2019-12-02 at 20:51 +, Vincenzo Maffione wrote:
> > > Author: vmaffione
> > > Date: Mon Dec 2 20:51:46 2019
> > > New Revision: 355301
> > > URL: https://svnweb.freebsd.org/changeset/base/355301
> > >
> > > Log:
> > > bh
On Tue, 2019-12-03 at 12:59 -0800, Ryan Libby wrote:
> > +* XXX UMA_ZONE_OFFPAGE.
All over freebsd we have cryptic XXX comments that have no meaning to
anyone except whoever wrote them (and, I suspect, no meaning to those
people either after a couple months have elapsed).
To the degree th
Author: ian
Date: Thu Dec 5 04:18:22 2019
New Revision: 355411
URL: https://svnweb.freebsd.org/changeset/base/355411
Log:
Fix a trivial typo and add a missing word.
Modified:
head/share/man/man7/arch.7
Modified: head/share/man/man7/arch.7
On Thu, 2019-12-05 at 10:05 -0800, Enji Cooper wrote:
> > On Dec 5, 2019, at 05:36, Konstantin Belousov
> > wrote:
>
> ...
>
> > > Could you elaborate on the why/rationale?
> > >
> > > Is there memory wastage/duplication, bug(s), performance or
> > > development/maintenance benefit?
> >
> > E
On Thu, 2019-12-05 at 11:21 -0800, Rodney W. Grimes wrote:
> > On 12/4/19 9:35 PM, Rodney W. Grimes wrote:
> > > > I see, thanks for the pointers.
> > > > It looks like cfmakeraw() and tcsetattr() were what I was
> > > > looking for.
> > > > A bhyve-specific printf wrapper looks the right solution
Author: ian
Date: Fri Dec 6 03:48:35 2019
New Revision: 355439
URL: https://svnweb.freebsd.org/changeset/base/355439
Log:
Declare the global kernel symbols created by ldscript.arm in arm's machdep.h,
and remove a couple scattered local declarations.
Most of these aren't referenced in C c
On Fri, 2019-12-06 at 12:55 +, Luiz Otavio O Souza wrote:
> Author: loos
> Date: Fri Dec 6 12:55:39 2019
> New Revision: 355444
> URL: https://svnweb.freebsd.org/changeset/base/355444
>
> Log:
> Add the SPI driver for the Marvell Armada 37x0 SoC.
>
> Interrupt based driver, implements
On Fri, 2019-12-06 at 20:05 +, Luiz Otavio O Souza wrote:
> Author: loos
> Date: Fri Dec 6 20:05:08 2019
> New Revision: 355461
> URL: https://svnweb.freebsd.org/changeset/base/355461
>
> Log:
> Fix the ARM64 build, include the necessary header.
>
> While here, call device_delete_chil
Author: ian
Date: Fri Dec 6 22:32:06 2019
New Revision: 355467
URL: https://svnweb.freebsd.org/changeset/base/355467
Log:
Implement bus_rescan for gpiobus(4). This allows on-the-fly reconfiguration
of gpio devices by using kenv to add hints for a new device and then do
'devctl rescan gpiob
Author: ian
Date: Sat Dec 7 17:54:40 2019
New Revision: 355499
URL: https://svnweb.freebsd.org/changeset/base/355499
Log:
Add module build stuff for gpioths(4), a driver for DHT11/DHT22 sensors.
Added:
head/sys/modules/gpio/gpioths/
head/sys/modules/gpio/gpioths/Makefile (contents, props
Author: ian
Date: Sun Dec 8 20:13:42 2019
New Revision: 355531
URL: https://svnweb.freebsd.org/changeset/base/355531
Log:
Several small fixes for the gpioths (temp/humidity sensor) driver.
At the end of a read cycle, set the gpio pin to INPUT rather than OUTPUT.
The state of the single-w
Author: ian
Date: Sun Dec 8 20:36:13 2019
New Revision: 355532
URL: https://svnweb.freebsd.org/changeset/base/355532
Log:
Simplify sysctl stuff in the gpioths driver. There is no need to use local
functions to handle the sysctls, they all just access simple readonly
integer variables. The
301 - 400 of 2319 matches
Mail list logo