#include <linux/init.h>
 #include <linux/kconfig.h>
 #include <linux/kernel.h>
+#include <linux/lockdep.h>
 #include <linux/memblock.h>
 #include <linux/of.h>
 #include <linux/of_fdt.h>
        },
 };
 
+/*
+ * Nearly all RTAS calls need to be serialized. All uses of the
+ * default rtas_args block must hold rtas_lock.
+ *
+ * Exceptions to the RTAS serialization requirement (e.g. stop-self)
+ * must use a separate rtas_args structure.
+ */
+static DEFINE_RAW_SPINLOCK(rtas_lock);
+static struct rtas_args rtas_args;
+
 /**
  * rtas_function_token() - RTAS function token lookup.
  * @handle: Function handle, e.g. RTAS_FN_EVENT_SCAN.
 static void __do_enter_rtas_trace(struct rtas_args *args)
 {
        const char *name = NULL;
+
+       if (args == &rtas_args)
+               lockdep_assert_held(&rtas_lock);
        /*
         * If the tracepoints that consume the function name aren't
         * active, avoid the lookup.
 
 struct rtas_t rtas;
 
-/*
- * Nearly all RTAS calls need to be serialized. All uses of the
- * default rtas_args block must hold rtas_lock.
- *
- * Exceptions to the RTAS serialization requirement (e.g. stop-self)
- * must use a separate rtas_args structure.
- */
-static DEFINE_RAW_SPINLOCK(rtas_lock);
-static struct rtas_args rtas_args;
-
 DEFINE_SPINLOCK(rtas_data_buf_lock);
 EXPORT_SYMBOL_GPL(rtas_data_buf_lock);
 
        u32 bufsz;
        char *buf = NULL;
 
+       lockdep_assert_held(&rtas_lock);
+
        if (token == -1)
                return NULL;
 
  */
 int rtas_call(int token, int nargs, int nret, int *outputs, ...)
 {
+       struct pin_cookie cookie;
        va_list list;
        int i;
        unsigned long flags;
        }
 
        raw_spin_lock_irqsave(&rtas_lock, flags);
+       cookie = lockdep_pin_lock(&rtas_lock);
+
        /* We use the global rtas args buffer */
        args = &rtas_args;
 
                        outputs[i] = be32_to_cpu(args->rets[i + 1]);
        ret = (nret > 0) ? be32_to_cpu(args->rets[0]) : 0;
 
+       lockdep_unpin_lock(&rtas_lock, cookie);
        raw_spin_unlock_irqrestore(&rtas_lock, flags);
 
        if (buff_copy) {
 /* We assume to be passed big endian arguments */
 SYSCALL_DEFINE1(rtas, struct rtas_args __user *, uargs)
 {
+       struct pin_cookie cookie;
        struct rtas_args args;
        unsigned long flags;
        char *buff_copy, *errbuf = NULL;
        buff_copy = get_errorlog_buffer();
 
        raw_spin_lock_irqsave(&rtas_lock, flags);
+       cookie = lockdep_pin_lock(&rtas_lock);
 
        rtas_args = args;
        do_enter_rtas(&rtas_args);
        if (be32_to_cpu(args.rets[0]) == -1)
                errbuf = __fetch_rtas_last_error(buff_copy);
 
+       lockdep_unpin_lock(&rtas_lock, cookie);
        raw_spin_unlock_irqrestore(&rtas_lock, flags);
 
        if (buff_copy) {