summaryrefslogtreecommitdiffstats
path: root/agl-layers-overview.md
blob: 409eae529d3bd960d340b669b5947ae76c5ad724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Overview
========

The
[AGL Project](https://www.automotivelinux.org/) is an automotive-specific
development environment that provides a Linux distribution
[(AGL UCB](https://www.automotivelinux.org/software/unified-code-base)).

AGL uses layers designed to be compatible with the
[Yocto Project](https://www.yoctoproject.org) and the
[OpenEmbedded Project (OE)](https://www.openembedded.org/wiki/Main_Page).

This section provides information about the layers used by the AGL Project:

* **`meta-agl`**: Minimal set of software needed to create an AGL distribution
  used to boot a system.
  AGL profiles are built on top of this minimal set of software.

* **`meta-agl-demo`**: Provides a reference or demo platform and applications
  for the AGL Distribution.
  The reference UI is part of the `meta-agl-demo` layer.

* **`meta-agl-devel`**: Contains components under development or being tested.
  This layer also contains software packages that OEMs need but do not exist
  in AGL.
t: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
Updates for 5.14

The 5.14 kernel reworked the tty register and unregister call
arguments, and made one of the arguments to the receive_buf
callback const, add some kernel version conditionals to handle
those.

Upstream-Status: Inappropriate [no upstream]
Signed-off-by: Scott Murray <scott.murray@konsulko.com>

---
 sllin/sllin.c | 29 ++++++++++++++++++++++++-----
 1 file changed, 24 insertions(+), 5 deletions(-)

diff --git a/sllin/sllin.c b/sllin/sllin.c
index 904cff9..b89d06d 100644
--- a/sllin/sllin.c
+++ b/sllin/sllin.c
@@ -72,6 +72,12 @@
 #include <linux/version.h>
 #include "linux/lin_bus.h"
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,14,0)
+#define FP_CONST const
+#else
+#define FP_CONST
+#endif
+
 /* Should be in include/linux/tty.h */
 #define N_SLLIN			25
 /* -------------------------------- */
@@ -185,9 +191,9 @@ struct sllin {
 static struct net_device **sllin_devs;
 static int sllin_configure_frame_cache(struct sllin *sl, struct can_frame *cf);
 static void sllin_slave_receive_buf(struct tty_struct *tty,
-			      const unsigned char *cp, char *fp, int count);
+			      const unsigned char *cp, FP_CONST char *fp, int count);
 static void sllin_master_receive_buf(struct tty_struct *tty,
-			      const unsigned char *cp, char *fp, int count);
+			      const unsigned char *cp, FP_CONST char *fp, int count);
 
 
 /* Values of two parity bits in LIN Protected
@@ -492,7 +498,7 @@ static void sll_setup(struct net_device *dev)
   Routines looking at TTY side.
  ******************************************/
 static void sllin_master_receive_buf(struct tty_struct *tty,
-			      const unsigned char *cp, char *fp, int count)
+			      const unsigned char *cp, FP_CONST char *fp, int count)
 {
 	struct sllin *sl = (struct sllin *) tty->disc_data;
 
@@ -735,7 +741,7 @@ static void sllin_slave_finish_rx_msg(struct sllin *sl)
 }
 
 static void sllin_slave_receive_buf(struct tty_struct *tty,
-			      const unsigned char *cp, char *fp, int count)
+			      const unsigned char *cp, FP_CONST char *fp, int count)
 {
 	struct sllin *sl = (struct sllin *) tty->disc_data;
 	int lin_id;
@@ -842,7 +848,7 @@ static void sllin_slave_receive_buf(struct tty_struct *tty,
 }
 
 static void sllin_receive_buf(struct tty_struct *tty,
-			      const unsigned char *cp, char *fp, int count)
+			      const unsigned char *cp, FP_CONST char *fp, int count)
 {
 	struct sllin *sl = (struct sllin *) tty->disc_data;
 	netdev_dbg(sl->dev, "sllin_receive_buf invoked, count = %u\n", count);
@@ -1619,6 +1625,9 @@ static int sllin_ioctl(struct tty_struct *tty, struct file *file,
 
 static struct tty_ldisc_ops sll_ldisc = {
 	.owner		= THIS_MODULE,
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,14,0)
+	.num		= N_SLLIN,
+#endif
 #if LINUX_VERSION_CODE < KERNEL_VERSION(5,13,0)
 	.magic		= TTY_LDISC_MAGIC,
 #endif
@@ -1648,7 +1657,11 @@ static int __init sllin_init(void)
 	}
 
 	/* Fill in our line protocol discipline, and register it */
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,14,0)
+	status = tty_register_ldisc(&sll_ldisc);
+#else
 	status = tty_register_ldisc(N_SLLIN, &sll_ldisc);
+#endif
 	if (status)  {
 		pr_err("sllin: can't register line discipline\n");
 		kfree(sllin_devs);
@@ -1719,9 +1732,15 @@ static void __exit sllin_exit(void)
 	kfree(sllin_devs);
 	sllin_devs = NULL;
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,14,0)
+	tty_unregister_ldisc(&sll_ldisc);
+
+#else
 	i = tty_unregister_ldisc(N_SLLIN);
+
 	if (i)
 		pr_err("sllin: can't unregister ldisc (err %d)\n", i);
+#endif
 }
 
 module_init(sllin_init);