| History log of /src/sys/arch/evbarm/mini2440 |
| Revision | Date | Author | Comments |
| 1.6 | 20-Dec-2023 |
thorpej | Remove unnecessary <sys/malloc.h>.
|
| 1.5 | 29-Feb-2020 |
isaki | Remove rounding by 4 bytes on round_blocksize(). For drivers which supports only 16bit * 2channels sampling, rounding by 4 bytes no longer meaningful.
|
| 1.4 | 07-Jun-2019 |
isaki | branches: 1.4.4; Rename uda_ssio_getprops() -> uda_ssio_get_props() to make it easy to search.
|
| 1.3 | 08-May-2019 |
isaki | Merge isaki-audio2 branch, the overhaul of audio subsystem. - Interrupt-oriented system rather than thread-oriented. - Improve stability, quality and performance. - Split playback and record cleanly. Improve halfduplex support. - Many bugs are fixed including deadlocks, resource leaks, abuses, etc. - Simplify audio filter mechanism. The encoding/channels/frequency conversions are completely handled in the upper layer. So the hard- ware driver only converts its hardware encoding (if necessary). - audio_hw_if changes: - Obsoletes query_encoding and add query_format instead. - Obsoletes set_params and add set_format instead. - Remove drain, setfd, mappage. - The call sequences are changed. - ioctl AUDIO_GETFD/SETFD, AUDIO_GETCHAN/SETCHAN are obsoleted. - ioctl AUDIO_{QUERY,GET,SET}FORMAT are introduced. - cleanup config attributes: au*conv and mulaw. - All hardware drivers should follow it (I've done as much as possible).
Some file paths are changed: - dev/audio.c -> dev/audio/audio.c (rewritten) - dev/audiovar.h -> dev/audio/audiovar.h - dev/audio_dai.h -> dev/audio/audio_dai.h - dev/audio_if.h -> dev/audio/audio_if.h - dev/audiobell.c -> dev/audio/audiobell.c - dev/audiobellvar.h -> dev/audio/audiobellvar.h - dev/mulaw.[ch] -> dev/audio/mulaw.[ch] + dev/audio/alaw.c
|
| 1.2 | 16-Mar-2019 |
isaki | branches: 1.2.2; Use C99 style struct initializer to audio_hw_if.
|
| 1.1 | 30-Jan-2012 |
nisimura | branches: 1.1.4; 1.1.50;
Add FriendlyARM Mini2440 support. - new code for Samsung S3C2440 SoC. - update for other S3C2xx0. This port was done by Paul Fleischer.
|
| 1.1.50.2 | 08-Apr-2020 |
martin | Merge changes from current as of 20200406
|
| 1.1.50.1 | 10-Jun-2019 |
christos | Sync with HEAD
|
| 1.1.4.2 | 17-Apr-2012 |
yamt | sync with head
|
| 1.1.4.1 | 30-Jan-2012 |
yamt | file audio_mini2440.c was added on branch yamt-pagecache on 2012-04-17 00:06:15 +0000
|
| 1.2.2.4 | 04-May-2019 |
isaki | Move dev/audio_if.h -> dev/audio/audio_if.h
|
| 1.2.2.3 | 04-May-2019 |
isaki | Remove simple flags that indicate whether the device is opened. These are handled in the upper layer now.
|
| 1.2.2.2 | 01-May-2019 |
isaki | set_params -> set_format in comment.
|
| 1.2.2.1 | 25-Apr-2019 |
isaki | Adapt to audio2. - The sample rate seems to be determined by peripherals so move uda1341_formats[] structure from ic/uda1341.c to audio_mini2440.c. - XXX Resetting the device in open() (and close()) might be harmful but I don't know details about what does this reset do.
|
| 1.4.4.1 | 29-Feb-2020 |
ad | Sync with head.
|
| 1.4 | 04-Oct-2025 |
thorpej | Add a shared function to query the common properties used for configuring an Ethernet address.
|
| 1.3 | 12-Nov-2012 |
skrll | C99 types
|
| 1.2 | 27-Oct-2012 |
chs | split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
| 1.1 | 30-Jan-2012 |
nisimura | branches: 1.1.4; 1.1.8;
Add FriendlyARM Mini2440 support. - new code for Samsung S3C2440 SoC. - update for other S3C2xx0. This port was done by Paul Fleischer.
|
| 1.1.8.1 | 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.1.4.4 | 16-Jan-2013 |
yamt | sync with (a bit old) head
|
| 1.1.4.3 | 30-Oct-2012 |
yamt | sync with head
|
| 1.1.4.2 | 17-Apr-2012 |
yamt | sync with head
|
| 1.1.4.1 | 30-Jan-2012 |
yamt | file if_dm_mini2440.c was added on branch yamt-pagecache on 2012-04-17 00:06:15 +0000
|
| 1.1 | 30-Jan-2012 |
nisimura | branches: 1.1.4;
Add FriendlyARM Mini2440 support. - new code for Samsung S3C2440 SoC. - update for other S3C2xx0. This port was done by Paul Fleischer.
|
| 1.1.4.2 | 17-Apr-2012 |
yamt | sync with head
|
| 1.1.4.1 | 30-Jan-2012 |
yamt | file mini2440_bootinfo.h was added on branch yamt-pagecache on 2012-04-17 00:06:15 +0000
|
| 1.8 | 06-Mar-2024 |
andvar | s/horizontaol/horizontal/ in comments.
|
| 1.7 | 20-Dec-2023 |
thorpej | Remove unnecessary <sys/malloc.h>.
|
| 1.6 | 07-Aug-2021 |
thorpej | Merge thorpej-cfargs2.
|
| 1.5 | 24-Apr-2021 |
thorpej | branches: 1.5.8; Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() / config_attach() interfaces: rather than having different variants for which arguments you want pass along, just have a single call that takes a variadic list of tag-value arguments.
Adjust all call sites: - Simplify wherever possible; don't pass along arguments that aren't actually needed. - Don't be explicit about what interface attribute is attaching if the device only has one. (More simplification.) - Add a config_probe() function to be used in indirect configuiration situations, making is visibly easier to see when indirect config is in play, and allowing for future change in semantics. (As of now, this is just a wrapper around config_match(), but that is an implementation detail.)
Remove unnecessary or redundant interface attributes where they're not needed.
There are currently 5 "cfargs" defined: - CFARG_SUBMATCH (submatch function for direct config) - CFARG_SEARCH (search function for indirect config) - CFARG_IATTR (interface attribte) - CFARG_LOCATORS (locators array) - CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark ports to associate those device handles with device_t instance. This will trickle trough to more places over time (need back-end for pre-OFW Sun OBP; any others?).
|
| 1.4 | 25-Jul-2014 |
dholland | branches: 1.4.42; Add d_discard to all struct cdevsw instances I could find.
All have been set to "nodiscard"; some should get a real implementation.
|
| 1.3 | 16-Mar-2014 |
dholland | branches: 1.3.2; Change (mostly mechanically) every cdevsw/bdevsw I can find to use designated initializers.
I have not built every extant kernel so I have probably broken at least one build; however I've also found and fixed some wrong cdevsw/bdevsw entries so even if so I think we come out ahead.
|
| 1.2 | 27-Oct-2012 |
chs | branches: 1.2.2; split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
| 1.1 | 30-Jan-2012 |
nisimura | branches: 1.1.4; 1.1.8;
Add FriendlyARM Mini2440 support. - new code for Samsung S3C2440 SoC. - update for other S3C2xx0. This port was done by Paul Fleischer.
|
| 1.1.8.2 | 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
| 1.1.8.1 | 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.1.4.4 | 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
| 1.1.4.3 | 30-Oct-2012 |
yamt | sync with head
|
| 1.1.4.2 | 17-Apr-2012 |
yamt | sync with head
|
| 1.1.4.1 | 30-Jan-2012 |
yamt | file mini2440_lcd.c was added on branch yamt-pagecache on 2012-04-17 00:06:15 +0000
|
| 1.2.2.1 | 18-May-2014 |
rmind | sync with head
|
| 1.3.2.1 | 10-Aug-2014 |
tls | Rebase.
|
| 1.4.42.1 | 21-Mar-2021 |
thorpej | Give config_found() the same variadic arguments treatment as config_search(). This commit only adds the CFARG_EOL sentinel to the existing config_found() calls. Conversion of config_found_sm_loc() and config_found_ia() call sites will be in subsequent commits.
|
| 1.5.8.1 | 04-Aug-2021 |
thorpej | Adapt to CFARGS().
|
| 1.23 | 03-Oct-2025 |
thorpej | Use device_setprop_data() to set the "mac-address" property.
|
| 1.22 | 20-Feb-2024 |
andvar | Fix format specifier for physmem from %d to 0x%"PRIxPSIZE" in multiple places.
Should fix VERBOSE_INIT_ARM for various evbarm kernel configs. Also add 0x prefix in few previously fixed places to improve readability.
|
| 1.21 | 19-Jun-2023 |
nisimura | unbreak the previous change.
|
| 1.20 | 20-Apr-2023 |
skrll | Provide a shared pmap_devmap implementation and convert all pmap_devmap arrays to use DEVMAP_ENTRY{,_END}
|
| 1.19 | 17-Aug-2021 |
andvar | fix multiplei repetitive typos in comments, messages and documentation. mainly because copy paste code big amount of files are affected.
|
| 1.18 | 18-Apr-2020 |
skrll | PMAP_DEBUG has been deleted on arm
|
| 1.17 | 18-Apr-2020 |
skrll | Trailing whitespace
|
| 1.16 | 10-Nov-2019 |
chs | branches: 1.16.6; in many device attach paths, allocate memory with M_WAITOK instead of M_NOWAIT and remove code to handle failures that can no longer happen.
|
| 1.15 | 16-Jul-2019 |
skrll | Consistently use vaddr_t as initarm and friends return type.
Makes no difference to binaries except for aarch64 where it's required
|
| 1.14 | 16-Jul-2019 |
skrll | KNF
|
| 1.13 | 28-Oct-2018 |
skrll | Fix a commit
|
| 1.12 | 21-Sep-2018 |
skrll | Centralise defparam CONSADDR, CONSPEED, CONMODE and CONADDR into opt_console.h and adjust.
|
| 1.11 | 31-Jul-2018 |
skrll | Sprinkle #include "opt_arm_debug.h" where VERBOSE_INIT_ARM is used
|
| 1.10 | 22-Dec-2016 |
cherry | branches: 1.10.14; 1.10.16; switch all ports to use uvm_init.c:uvm_md_init()
uvm_setpagesize() is now subsumed within this funciton.
|
| 1.9 | 13-Sep-2014 |
matt | branches: 1.9.2; 1.9.4; Replace more vm_offset_t, vm_size_t with vaddr_t, vsize_t Use paddr_t for msgbufphys
|
| 1.8 | 14-Mar-2014 |
matt | #include <arm/locore.h>
|
| 1.7 | 30-Oct-2013 |
uebayasi | G/C struct user *proc0paddr.
|
| 1.6 | 22-Sep-2012 |
matt | branches: 1.6.2; Don't use an asm in pmap_activate to update the TTBR, use cpu_setttb instead but add a second argument to it to indicate whether the TLB/caches need to be flushed. Default cortex to pmap_needs_fixup = 1. But check the MMFR3 field to see if the fixed can be skipped. Use a cf_flag bit 0 to indicate whether the A9 L2 cache should disable (bit 0 = 1) or enabeld (bit = 0).
With these changes, the A9 MMU can use traverse caches to do MMU tablewalks Also, make sure all memory has the shareable bit for the A9.
|
| 1.5 | 16-Aug-2012 |
matt | branches: 1.5.2; Move the standard definitions of the {UND,IRQ,FIQ,ABT}_STACK_SIZE to <arm32/machdep.h> Move the extern for cpu_reset_address to the same file. Add cpu_reset_address_paddr. Kill cpu_reset_v4_MMU_disable. if cpu_reset_address is NULL, then the MMU will be disabled.
|
| 1.4 | 29-Jul-2012 |
matt | Fix more -fno-common fallout. Move more variables to common locations.
|
| 1.3 | 28-Jul-2012 |
matt | Remove declartions of physmem
|
| 1.2 | 03-Feb-2012 |
nisimura | branches: 1.2.4;
Make sure to allow MEMORY_DISK as rootfs.
|
| 1.1 | 30-Jan-2012 |
nisimura | Add FriendlyARM Mini2440 support. - new code for Samsung S3C2440 SoC. - update for other S3C2xx0. This port was done by Paul Fleischer.
|
| 1.2.4.4 | 22-May-2014 |
yamt | sync with head.
for a reference, the tree before this commit was tagged as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid a limitation of cvs. ("Protocol error: too many arguments")
|
| 1.2.4.3 | 30-Oct-2012 |
yamt | sync with head
|
| 1.2.4.2 | 17-Apr-2012 |
yamt | sync with head
|
| 1.2.4.1 | 03-Feb-2012 |
yamt | file mini2440_machdep.c was added on branch yamt-pagecache on 2012-04-17 00:06:15 +0000
|
| 1.5.2.3 | 03-Dec-2017 |
jdolecek | update from HEAD
|
| 1.5.2.2 | 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
| 1.5.2.1 | 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
| 1.6.2.1 | 18-May-2014 |
rmind | sync with head
|
| 1.9.4.1 | 07-Jan-2017 |
pgoyette | Sync with HEAD. (Note that most of these changes are simply $NetBSD$ tag issues.)
|
| 1.9.2.1 | 05-Feb-2017 |
skrll | Sync with HEAD
|
| 1.10.16.3 | 21-Apr-2020 |
martin | Sync with HEAD
|
| 1.10.16.2 | 13-Apr-2020 |
martin | Mostly merge changes from HEAD upto 20200411
|
| 1.10.16.1 | 10-Jun-2019 |
christos | Sync with HEAD
|
| 1.10.14.3 | 26-Nov-2018 |
pgoyette | Sync with HEAD, resolve a couple of conflicts
|
| 1.10.14.2 | 30-Sep-2018 |
pgoyette | Ssync with HEAD
|
| 1.10.14.1 | 06-Sep-2018 |
pgoyette | Sync with HEAD
Resolve a couple of conflicts (result of the uimin/uimax changes)
|
| 1.16.6.1 | 20-Apr-2020 |
bouyer | Sync with HEAD
|
| 1.2 | 13-Jun-2022 |
andvar | s/caled/called/ in comments and man page, also few more fixes.
|
| 1.1 | 30-Jan-2012 |
nisimura | branches: 1.1.4;
Add FriendlyARM Mini2440 support. - new code for Samsung S3C2440 SoC. - update for other S3C2xx0. This port was done by Paul Fleischer.
|
| 1.1.4.2 | 17-Apr-2012 |
yamt | sync with head
|
| 1.1.4.1 | 30-Jan-2012 |
yamt | file mini2440_start.S was added on branch yamt-pagecache on 2012-04-17 00:06:15 +0000
|